mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-01 22:21:05 +00:00
Fix "render insides" condition being inverted for intangible FOFs
This commit is contained in:
parent
06e06a1cb6
commit
9d3dc98939
1 changed files with 1 additions and 1 deletions
|
@ -3385,7 +3385,7 @@ static void P_ConvertBinaryMap(void)
|
|||
//Appearance
|
||||
if (lines[i].special == 222)
|
||||
lines[i].args[2] |= TMFA_NOPLANES;
|
||||
if (lines[i].special != 221)
|
||||
if (lines[i].special == 221)
|
||||
lines[i].args[2] |= TMFA_INSIDES;
|
||||
if (lines[i].special != 220 && !(lines[i].flags & ML_NOCLIMB))
|
||||
lines[i].args[2] |= TMFA_NOSHADE;
|
||||
|
|
Loading…
Reference in a new issue