1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-23 05:30:41 -05:00

Race: 1 second initial zombie spawn rate (increases every round)

This commit is contained in:
Jbleezy
2023-03-23 19:29:21 -07:00
parent 065f34f8f0
commit dcdfff7add
2 changed files with 4 additions and 1 deletions

View File

@ -2559,7 +2559,7 @@ race_think()
setroundsplayed(level.round_number);
level.zombie_move_speed = 36;
level.zombie_vars["zombie_spawn_delay"] = 0.5;
level.zombie_vars["zombie_spawn_delay"] = 1;
level.brutus_health = int(level.brutus_health_increase * level.round_number);
level.brutus_expl_dmg_req = int(level.brutus_explosive_damage_increase * level.round_number);
@ -2583,6 +2583,8 @@ race_think()
level.zombie_move_speed = move_speed;
}
level.zombie_vars["zombie_spawn_delay"] *= 0.95;
level.brutus_health = int(level.brutus_health_increase * level.round_number);
level.brutus_expl_dmg_req = int(level.brutus_explosive_damage_increase * level.round_number);