1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-10 15:17:57 -05:00

Survival on MOTD locations: limit wolf powerup to once per round

This commit is contained in:
Jbleezy
2024-01-10 14:16:51 -08:00
parent 3ed52dc1ff
commit f918e2e37b

View File

@ -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();
}
}