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

Containment: don't increment revives on respawn

This commit is contained in:
Jbleezy
2022-01-30 08:02:26 -08:00
parent 4d08d3e722
commit 4d744a0350
2 changed files with 2 additions and 0 deletions

View File

@ -218,6 +218,7 @@ nuke_powerup( drop_item, player_team )
else
{
players[i] maps/mp/zombies/_zm::spectator_respawn();
players[i].revives--;
}
}
}

View File

@ -768,6 +768,7 @@ on_player_bleedout()
if(level.scr_zm_ui_gametype_obj == "zcontainment")
{
self maps/mp/zombies/_zm::spectator_respawn();
self.revives--;
}
}
}