From cc37e7bce935095ea5abbde6fa223ba61c68d34f Mon Sep 17 00:00:00 2001 From: NepDisk <16447892+NepDisk@users.noreply.github.com> Date: Sat, 7 Sep 2024 02:43:36 -0400 Subject: [PATCH] Disable block players for now this is causing issues on some v1 maps by making some lines impassible even if its just doing vertex slopes or flat alignment --- src/p_map.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }