1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-13 08:38:01 -05:00

Meat: decrease score to win to 200

This commit is contained in:
Jbleezy
2023-03-02 13:32:38 -08:00
parent 2d3cdc2df4
commit 33735f059c
2 changed files with 2 additions and 2 deletions

View File

@ -543,7 +543,7 @@
#### Meat
* Gain score by being the team holding the meat
* Gain 250 score to win the game
* Gain 200 score to win the game
* Meat powerup always spawns from the first zombie killed
* All zombies go after the player holding the meat
* Player holding the meat moves at 60% speed

View File

@ -1417,7 +1417,7 @@ get_gamemode_winning_score()
}
else if(level.scr_zm_ui_gametype_obj == "zmeat")
{
return 250;
return 200;
}
}