From 620d4149bac091383eff860c6b242bf1af3b7a6b Mon Sep 17 00:00:00 2001 From: MSWS Date: Sat, 7 Sep 2024 19:36:20 -0700 Subject: [PATCH] Fix infection day not restricting weapons --- mod/Jailbreak.SpecialDay/SpecialDays/InfectionDay.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mod/Jailbreak.SpecialDay/SpecialDays/InfectionDay.cs b/mod/Jailbreak.SpecialDay/SpecialDays/InfectionDay.cs index cf5f5a6b..9b5e567e 100644 --- a/mod/Jailbreak.SpecialDay/SpecialDays/InfectionDay.cs +++ b/mod/Jailbreak.SpecialDay/SpecialDays/InfectionDay.cs @@ -133,8 +133,9 @@ override protected HookResult public class InfectionSettings : SpecialDaySettings { public InfectionSettings() { - CtTeleport = TeleportType.ARMORY; - TTeleport = TeleportType.RANDOM; + CtTeleport = TeleportType.ARMORY; + TTeleport = TeleportType.RANDOM; + RestrictWeapons = true; WithRespawns(CsTeam.CounterTerrorist); }