mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- fixed: The checks in P_IsThingSpecial was broken.
This commit is contained in:
parent
e290bc6fd0
commit
d1f17e0b46
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue