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