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

Race: players retain perks

This commit is contained in:
Jbleezy
2023-03-19 16:41:06 -07:00
parent 661288adbc
commit 5ee6bd4cea
2 changed files with 2 additions and 1 deletions

View File

@ -599,6 +599,7 @@
* Starts at round 1 * Starts at round 1
* Round increments every 30 seconds (up to round 20) * Round increments every 30 seconds (up to round 20)
* Players respawn after being down for 10 seconds * Players respawn after being down for 10 seconds
* Players retain perks
#### Containment #### Containment
* Gain score by being the team with the most players alive in the containment zone * Gain score by being the team with the most players alive in the containment zone

View File

@ -720,7 +720,7 @@ grief_onplayerconnect()
self.killsdenied = 0; self.killsdenied = 0;
self.captures = 0; self.captures = 0;
if(level.scr_zm_ui_gametype_obj == "zgrief" || level.scr_zm_ui_gametype_obj == "zcontainment" || level.scr_zm_ui_gametype_obj == "zmeat") if(level.scr_zm_ui_gametype_obj == "zgrief" || level.scr_zm_ui_gametype_obj == "zrace" || level.scr_zm_ui_gametype_obj == "zcontainment" || level.scr_zm_ui_gametype_obj == "zmeat")
{ {
self._retain_perks = 1; self._retain_perks = 1;
} }