mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Battle: cap point limit at 20
This commit is contained in:
parent
ce1fe0028a
commit
9c7e8b8be3
1 changed files with 5 additions and 0 deletions
|
|
@ -13328,6 +13328,11 @@ UINT32 K_PointLimitForGametype(void)
|
|||
ptsCap += 4;
|
||||
}
|
||||
}
|
||||
|
||||
if (ptsCap > 20)
|
||||
{
|
||||
ptsCap = 20;
|
||||
}
|
||||
}
|
||||
|
||||
return ptsCap;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue