mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-26 15:31:03 +00:00
no HOLD! bubble on fast transfer fall
BONUS: remove unused variable that the compiler complained about # Conflicts: # src/k_kart.c
This commit is contained in:
parent
911634773a
commit
9d395396db
1 changed files with 2 additions and 1 deletions
|
|
@ -12912,7 +12912,8 @@ void K_KartEbrakeVisuals(player_t *p)
|
|||
mobj_t *spdl;
|
||||
fixed_t sx, sy;
|
||||
|
||||
if (K_PlayerEBrake(p) == true)
|
||||
// Don't show the bubble visual if you're fast transfer falling
|
||||
if (K_PlayerEBrake(p) == true && !p->transfer)
|
||||
{
|
||||
if (p->ebrakefor % 20 == 0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue