From 92e2f24a8fc00927a950c802a7c16d01be7318d3 Mon Sep 17 00:00:00 2001 From: Archangel Date: Mon, 15 Jul 2024 14:55:35 +0200 Subject: [PATCH] Change status from waiting for other players to finish loading to something more descriptive (To prevent user errors) --- Fika.Core/Coop/GameMode/CoopGame.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Fika.Core/Coop/GameMode/CoopGame.cs b/Fika.Core/Coop/GameMode/CoopGame.cs index c3b57251..84d772bc 100644 --- a/Fika.Core/Coop/GameMode/CoopGame.cs +++ b/Fika.Core/Coop/GameMode/CoopGame.cs @@ -665,6 +665,8 @@ public override IEnumerator vmethod_1() { if (!isServer) { + FikaBackendUtils.ScreenController.ChangeStatus("Waiting for host to finish raid initialization..."); + FikaClient fikaClient = Singleton.Instance; do { @@ -1378,6 +1380,8 @@ public override IEnumerator vmethod_4(BotControllerSettings controllerSettings, Singleton.Instance.TimeBeforeDeployLocal = Math.Max(Singleton.Instance.TimeBeforeDeployLocal, 5); + FikaBackendUtils.ScreenController.ChangeStatus("Finishing raid initialization..."); + yield return base.vmethod_4(controllerSettings, spawnSystem, runCallback); yield break; }