1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-19 03:28:38 -05:00

Race: decrease zombie spawn wait time

This commit is contained in:
Jbleezy
2022-02-03 18:35:05 -08:00
parent 57ceb9018e
commit 872ade3731

View File

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