- fixed: The sector's 'hidden' UDMF property did not properly clear the corresponding flag if the value was 'false'.

- added UDMF 'waterzone' property for sectors.
This commit is contained in:
Christoph Oelckers 2013-08-09 11:47:25 +02:00
commit e6c880c93a
3 changed files with 10 additions and 1 deletions

View file

@ -1326,7 +1326,11 @@ public:
continue;
case NAME_hidden:
sec->MoreFlags |= SECF_HIDDEN;
Flag(sec->MoreFlags, SECF_HIDDEN, key);
break;
case NAME_Waterzone:
Flag(sec->MoreFlags, SECF_UNDERWATER, key);
break;
default: