From 18c0d32320cb22754ae35cf80ed700aa73ad27fd Mon Sep 17 00:00:00 2001 From: MascaraSnake Date: Sat, 15 Jun 2019 13:52:27 +0200 Subject: [PATCH] Removed an unnecessary tracer check --- src/p_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_map.c b/src/p_map.c index 5015e6a79..2655042dc 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -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;