mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-20 19:02:34 +00:00
Removed an unnecessary tracer check
This commit is contained in:
parent
943ddeeabf
commit
a3784850b7
1 changed files with 1 additions and 1 deletions
|
@ -836,7 +836,7 @@ static boolean PIT_CheckThing(mobj_t *thing)
|
|||
|
||||
if (thing->type == MT_SALOONDOOR && tmthing->player)
|
||||
{
|
||||
if ((tmthing->player->powers[pw_carry] == CR_MINECART && tmthing->player->mo->tracer && !P_MobjWasRemoved(tmthing->player->mo->tracer)))
|
||||
if (tmthing->player->powers[pw_carry] == CR_MINECART)
|
||||
{
|
||||
fixed_t dx = tmthing->momx;
|
||||
fixed_t dy = tmthing->momy;
|
||||
|
|
Loading…
Reference in a new issue