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

Encounter: fix team leaving after end game counting as win

This commit is contained in:
Jbleezy
2022-02-25 14:29:41 -08:00
parent d6596c17fd
commit b7fe5831c2
2 changed files with 6 additions and 4 deletions

View File

@ -437,7 +437,7 @@
### Encounter
* Group of competitive game modes
* Unlimited zombies
* 2500 health zombies
* 2500 health zombies (25000 health Brutus)
* 0.5 second zombie spawn rate
* Only sprinting zombies
* Unlimited powerups
@ -474,9 +474,6 @@
* Added intro text
* Announcer audio always plays
* Last player alive audio only plays for the player who is alive instead of every player on the team
* Decreased connection timeout from 90 seconds to 60 seconds
* Random map rotation
* 25000 health Brutus
#### Grief
* Gain score by making enemy players bleed out

View File

@ -737,6 +737,11 @@ grief_onplayerdisconnect(disconnecting_player)
return;
}
if(isDefined(level.gamemodulewinningteam))
{
return;
}
if(isDefined(level.grief_update_records))
{
[[level.grief_update_records]](disconnecting_player);