mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
Fix instawhip cooldown reminder
This commit is contained in:
parent
466f7dece0
commit
e189725fc3
1 changed files with 2 additions and 2 deletions
|
|
@ -10540,9 +10540,9 @@ void K_MoveKartPlayer(player_t *player, boolean onground)
|
||||||
{
|
{
|
||||||
if (ATTACK_IS_DOWN && player->rings <= 0)
|
if (ATTACK_IS_DOWN && player->rings <= 0)
|
||||||
{
|
{
|
||||||
if (players->instaShieldCooldown)
|
if (player->instaShieldCooldown)
|
||||||
{
|
{
|
||||||
S_StartSound(player->mo, sfx_s1a9);
|
S_StartSound(player->mo, sfx_kc50);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue