- fixed: USDF did not allow specials > 255.

This commit is contained in:
Christoph Oelckers 2017-02-26 16:54:09 +01:00
commit ee6e427e78
2 changed files with 2 additions and 2 deletions

View file

@ -192,7 +192,7 @@ class USDFParser : public UDMFParserBase
case NAME_Special:
reply->ActionSpecial = CheckInt(key);
if (reply->ActionSpecial < 0 || reply->ActionSpecial > 255)
if (reply->ActionSpecial < 0)
reply->ActionSpecial = 0;
break;