diff --git a/Content.IntegrationTests/DummyGameTicker.cs b/Content.IntegrationTests/DummyGameTicker.cs index ae1ddc2272..f3ffbe05d3 100644 --- a/Content.IntegrationTests/DummyGameTicker.cs +++ b/Content.IntegrationTests/DummyGameTicker.cs @@ -11,7 +11,12 @@ namespace Content.IntegrationTests public class DummyGameTicker : SharedGameTicker, IGameTicker { public GameRunLevel RunLevel { get; } = GameRunLevel.InRound; - public event Action OnRunLevelChanged; + + public event Action OnRunLevelChanged + { + add { } + remove { } + } public void Initialize() {