From 872ade3731a77c991edbafce5c7d1c72087c19fc Mon Sep 17 00:00:00 2001 From: Jbleezy Date: Thu, 3 Feb 2022 18:35:05 -0800 Subject: [PATCH] Race: decrease zombie spawn wait time --- scripts/zm/zgrief/zgrief_reimagined.gsc | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/scripts/zm/zgrief/zgrief_reimagined.gsc b/scripts/zm/zgrief/zgrief_reimagined.gsc index 5f35ea91..a4e73e20 100644 --- a/scripts/zm/zgrief/zgrief_reimagined.gsc +++ b/scripts/zm/zgrief/zgrief_reimagined.gsc @@ -1038,7 +1038,17 @@ round_start_wait(time, initial) } } - level thread zombie_spawn_wait(time + 10); + zombie_spawn_time = time; + if(level.scr_zm_ui_gametype_obj == "zrace") + { + zombie_spawn_time += 5; + } + else + { + zombie_spawn_time += 10; + } + + level thread zombie_spawn_wait(zombie_spawn_time); round_start_countdown_hud = round_start_countdown_hud(time);