mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Flip sign around
This might've meant it was still spawning sliptides when giving up after too much hot potato
This commit is contained in:
parent
64592326ec
commit
1f14ac76bc
1 changed files with 1 additions and 1 deletions
|
|
@ -202,7 +202,7 @@ static void SpawnSPBSliptide(mobj_t *spb, SINT8 dir)
|
|||
angle_t travelangle;
|
||||
fixed_t sz = spb->floorz;
|
||||
|
||||
if ((spb_modetimer(spb) != SPB_HOTPOTATO) || (spb_swapcount(spb) > SPB_MAXSWAPS + 1)) // Tired of this thing whacking people when switching targets
|
||||
if ((spb_modetimer(spb) != SPB_HOTPOTATO) || (spb_swapcount(spb) < SPB_MAXSWAPS + 1)) // Tired of this thing whacking people when switching targets
|
||||
{
|
||||
if (spb->eflags & MFE_VERTICALFLIP)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue