mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
No extended debt for recovery spindash
This commit is contained in:
parent
3c68ab7674
commit
50b64e2f08
1 changed files with 11 additions and 1 deletions
12
src/k_kart.c
12
src/k_kart.c
|
|
@ -11882,7 +11882,17 @@ static void K_KartSpindash(player_t *player)
|
||||||
// Intentionally a lop-sided trade-off, so the game doesn't become
|
// Intentionally a lop-sided trade-off, so the game doesn't become
|
||||||
// Funky Kong's Ring Racers.
|
// Funky Kong's Ring Racers.
|
||||||
|
|
||||||
P_PlayerRingBurst(player, 1);
|
// 2.2 - No extended ring debt for recovery spindash
|
||||||
|
if (G_CompatLevel(0x000A))
|
||||||
|
{
|
||||||
|
P_PlayerRingBurst(player, 1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (player->rings > 0)
|
||||||
|
P_PlayerRingBurst(player, 1);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (chargetime > 0)
|
if (chargetime > 0)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue