- fixed: The checks in P_IsThingSpecial was broken.

This commit is contained in:
Christoph Oelckers 2016-03-04 16:23:40 +01:00
parent e290bc6fd0
commit d1f17e0b46

View file

@ -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