From a7fa2afe15bfa6e603fd113dc303f69db2fea51e Mon Sep 17 00:00:00 2001 From: MSWS Date: Mon, 10 Nov 2025 14:45:34 -0800 Subject: [PATCH] fix: Vanilla round invert --- TTT/SpecialRound/Rounds/VanillaRound.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 class VanillaRound(IServiceProvider provider) [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]);