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

Encounter: fix starting points being changed

This commit is contained in:
Jbleezy
2023-05-15 00:59:34 -07:00
parent fd4d25eda9
commit 841c5d1fb8

View File

@ -325,12 +325,15 @@ round_think( restart = 0 )
setroundsplayed( level.round_number ); setroundsplayed( level.round_number );
for (;;) for (;;)
{
if (!is_gametype_active("zgrief"))
{ {
level.player_starting_points = (level.round_number + 1) * 500; level.player_starting_points = (level.round_number + 1) * 500;
if (level.player_starting_points > 10000) if (level.player_starting_points > 10000)
{ {
level.player_starting_points = 10000; level.player_starting_points = 10000;
} }
}
maxreward = 50 * level.round_number; maxreward = 50 * level.round_number;