diff --git a/Content.Server/GameTicking/Rules/GameRuleSystem.cs b/Content.Server/GameTicking/Rules/GameRuleSystem.cs index a55189d0f2..4f788e0052 100644 --- a/Content.Server/GameTicking/Rules/GameRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/GameRuleSystem.cs @@ -4,7 +4,7 @@ namespace Content.Server.GameTicking.Rules; public abstract class GameRuleSystem : EntitySystem where T : Component { - [Dependency] protected GameTicker GameTicker = default!; + [Dependency] protected readonly GameTicker GameTicker = default!; public override void Initialize() { diff --git a/Content.Server/StationEvents/Events/LoneOpsSpawnRule.cs b/Content.Server/StationEvents/Events/LoneOpsSpawnRule.cs index 57f0a2cbb6..8e1a2f3b3b 100644 --- a/Content.Server/StationEvents/Events/LoneOpsSpawnRule.cs +++ b/Content.Server/StationEvents/Events/LoneOpsSpawnRule.cs @@ -20,7 +20,10 @@ public sealed class LoneOpsSpawnRule : StationEventSystem