mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Don't stair jank in spectator mode
This commit is contained in:
parent
81e43245a8
commit
92e61d82d9
1 changed files with 2 additions and 2 deletions
|
|
@ -2638,8 +2638,8 @@ boolean P_TryMove(mobj_t *thing, fixed_t x, fixed_t y, boolean allowdropoff)
|
|||
|
||||
/* FIXME: slope step down (even up) has some false
|
||||
positives, so just ignore them entirely. */
|
||||
if (stairjank && !oldslope &&
|
||||
!thing->standingslope && thing->player)
|
||||
if (stairjank && !oldslope && !thing->standingslope &&
|
||||
thing->player && !thing->player->spectator)
|
||||
{
|
||||
/* use a shorter sound if not two tics have passed
|
||||
* since the last step */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue