mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix Ring payout rate getting stuck fast until interacting with aother Ring Box
This commit is contained in:
parent
b3a2cc2ea9
commit
3d5f0e9d73
1 changed files with 5 additions and 0 deletions
|
|
@ -10474,6 +10474,11 @@ void K_KartPlayerThink(player_t *player, ticcmd_t *cmd)
|
|||
// CONS_Printf("%d - %d\n", player->ringboost, oldringboost - player->ringboost);
|
||||
}
|
||||
|
||||
if (!G_CompatLevel(0x0010) && player->superring == 0 && player->ringboxdelay == 0 && player->ringboost < player->lastringboost)
|
||||
{
|
||||
player->lastringboost = player->ringboost;
|
||||
}
|
||||
|
||||
if (player->sneakertimer)
|
||||
{
|
||||
player->sneakertimer--;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue