From f918e2e37bfa767d5493180d76945d4dd661d51d Mon Sep 17 00:00:00 2001 From: Jbleezy Date: Wed, 10 Jan 2024 14:16:51 -0800 Subject: [PATCH] Survival on MOTD locations: limit wolf powerup to once per round --- scripts/zm/replaced/zm_alcatraz_weap_quest.gsc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/scripts/zm/replaced/zm_alcatraz_weap_quest.gsc b/scripts/zm/replaced/zm_alcatraz_weap_quest.gsc index e4b18737..e95978b3 100644 --- a/scripts/zm/replaced/zm_alcatraz_weap_quest.gsc +++ b/scripts/zm/replaced/zm_alcatraz_weap_quest.gsc @@ -47,7 +47,16 @@ grief_soul_catcher_state_manager() self.souls_received = 0; level thread wolf_spit_out_powerup(); - wait 20; + + if (is_gametype_active("zgrief")) + { + wait 20; + } + else + { + level waittill("between_round_over"); + } + self thread soul_catcher_check(); } }