From d1f17e0b4692d7ea3446e42a69a74ff9570410d1 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 4 Mar 2016 16:23:40 +0100 Subject: [PATCH] - fixed: The checks in P_IsThingSpecial was broken. --- src/p_udmf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_udmf.cpp b/src/p_udmf.cpp index 54a2a1a8d..2c388e178 100644 --- a/src/p_udmf.cpp +++ b/src/p_udmf.cpp @@ -103,7 +103,7 @@ static char HexenSectorSpecialOk[256]={ static inline bool P_IsThingSpecial(int specnum) { return (specnum >= Thing_Projectile && specnum <= Thing_SpawnNoFog) || - specnum == Thing_SpawnFacing || Thing_ProjectileIntercept || Thing_ProjectileAimed; + specnum == Thing_SpawnFacing || specnum == Thing_ProjectileIntercept || specnum == Thing_ProjectileAimed; } enum