mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-10 23:27:57 -05:00
Encounter: fix starting points being changed
This commit is contained in:
@ -326,10 +326,13 @@ round_think( restart = 0 )
|
||||
|
||||
for (;;)
|
||||
{
|
||||
level.player_starting_points = (level.round_number + 1) * 500;
|
||||
if (level.player_starting_points > 10000)
|
||||
if (!is_gametype_active("zgrief"))
|
||||
{
|
||||
level.player_starting_points = 10000;
|
||||
level.player_starting_points = (level.round_number + 1) * 500;
|
||||
if (level.player_starting_points > 10000)
|
||||
{
|
||||
level.player_starting_points = 10000;
|
||||
}
|
||||
}
|
||||
|
||||
maxreward = 50 * level.round_number;
|
||||
|
Reference in New Issue
Block a user