diff --git a/TTT/SpecialRound/Rounds/SpeedRound.cs b/TTT/SpecialRound/Rounds/SpeedRound.cs index 58842b3..2e55f5b 100644 --- a/TTT/SpecialRound/Rounds/SpeedRound.cs +++ b/TTT/SpecialRound/Rounds/SpeedRound.cs @@ -82,7 +82,7 @@ public override void OnGameState(GameStateUpdateEvent ev) { public void OnDeath(PlayerDeathEvent ev) { var game = games.ActiveGame; if (game == null) return; - if (Tracker.ActiveRounds.Contains(this)) return; + if (!Tracker.ActiveRounds.Contains(this)) return; var victimRoles = roles.GetRoles(ev.Victim); if (!victimRoles.Any(r => r is InnocentRole)) return;