mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix sign error in baildrop debt calcs
This commit is contained in:
parent
c97e24527c
commit
972574535a
1 changed files with 1 additions and 1 deletions
|
|
@ -14054,7 +14054,7 @@ void K_MoveKartPlayer(player_t *player, boolean onground)
|
||||||
UINT32 debtrings = 20;
|
UINT32 debtrings = 20;
|
||||||
if (player->rings < 0)
|
if (player->rings < 0)
|
||||||
{
|
{
|
||||||
debtrings -= player->rings;
|
debtrings += player->rings;
|
||||||
player->rings = 0;
|
player->rings = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue