diff --git a/TTT/SpecialRound/Rounds/VanillaRound.cs b/TTT/SpecialRound/Rounds/VanillaRound.cs index fb07c88..11abec6 100644 --- a/TTT/SpecialRound/Rounds/VanillaRound.cs +++ b/TTT/SpecialRound/Rounds/VanillaRound.cs @@ -42,7 +42,7 @@ public override bool ConflictsWith(AbstractSpecialRound other) { [UsedImplicitly] [EventHandler(Priority = Priority.HIGH)] public void OnPurchase(PlayerPurchaseItemEvent ev) { - if (Tracker.ActiveRounds.Contains(this)) return; + if (!Tracker.ActiveRounds.Contains(this)) return; ev.IsCanceled = true; messenger.Message(ev.Player, locale[RoundMsgs.VANILLA_ROUND_REMINDER]);