From 34645238d4693852cbdded8c35b61efed44ff72f Mon Sep 17 00:00:00 2001 From: Steel Titanium Date: Sun, 3 Mar 2019 20:08:11 -0500 Subject: [PATCH] Fix MF_NOCLIPTHING --- 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 95ad0258..58007052 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -456,7 +456,7 @@ static boolean PIT_CheckThing(mobj_t *thing) return true; } - if (!(thing->flags & (MF_SOLID|MF_SPECIAL|MF_PAIN|MF_SHOOTABLE))) + if (!(thing->flags & (MF_SOLID|MF_SPECIAL|MF_PAIN|MF_SHOOTABLE)) || (thing->flags & MF_NOCLIPTHING)) return true; // Don't collide with your buddies while NiGHTS-flying.