diff --git a/Fika.Core/Coop/GameMode/CoopGame.cs b/Fika.Core/Coop/GameMode/CoopGame.cs index 43ffe13f..1027c086 100644 --- a/Fika.Core/Coop/GameMode/CoopGame.cs +++ b/Fika.Core/Coop/GameMode/CoopGame.cs @@ -54,9 +54,9 @@ internal sealed class CoopGame : BaseLocalGame, IBotGame, IFika public bool forceStart = false; public ExitStatus MyExitStatus { get; set; } = ExitStatus.Survived; public string MyExitLocation { get; set; } = null; - public ISpawnSystem SpawnSystem { get; set; } + public ISpawnSystem SpawnSystem; - public Dictionary Bots { get; set; } = []; + public Dictionary Bots = []; private CoopExfilManager exfilManager; private GameObject fikaStartButton; private readonly Dictionary botQueue = []; diff --git a/Fika.Core/Coop/GameMode/IMPTGame.cs b/Fika.Core/Coop/GameMode/IFikaGame.cs similarity index 100% rename from Fika.Core/Coop/GameMode/IMPTGame.cs rename to Fika.Core/Coop/GameMode/IFikaGame.cs