No extended debt for recovery spindash

This commit is contained in:
AJ Martinez 2024-05-01 21:04:20 -07:00
parent 3c68ab7674
commit 50b64e2f08

View file

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