diff --git a/src/p_map.c b/src/p_map.c index 1d850d9e8..9cd5ae1e1 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -1463,11 +1463,11 @@ boolean P_IsLineBlocking(const line_t *ld, const mobj_t *thing) return true; } - if (thing->player) + /*if (thing->player) { return ((ld->flags & ML_BLOCKPLAYERS) == ML_BLOCKPLAYERS); } - else if (thing->flags & (MF_ENEMY|MF_BOSS)) + else*/ if (thing->flags & (MF_ENEMY|MF_BOSS)) { return ((ld->flags & ML_BLOCKMONSTERS) == ML_BLOCKMONSTERS); }