1
0
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:
Jbleezy
2023-05-15 00:59:34 -07:00
parent fd4d25eda9
commit 841c5d1fb8

View File

@ -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;