mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-22 02:42:20 +00:00
Fix arg # typos for "visible from inside" checks
This commit is contained in:
parent
259732cccb
commit
f62c2f4c75
1 changed files with 2 additions and 2 deletions
|
@ -6566,7 +6566,7 @@ void P_SpawnSpecials(boolean fromnetsave)
|
|||
//If inside is visible from the outside, cut inner walls
|
||||
if (lines[i].args[1] < 255 || (lines[i].args[3] & TMFA_SPLAT))
|
||||
ffloorflags |= FOF_CUTEXTRA|FOF_EXTRA;
|
||||
else if (!(lines[i].args[3] & TMFT_VISIBLEFROMINSIDE))
|
||||
else if (!(lines[i].args[4] & TMFT_VISIBLEFROMINSIDE))
|
||||
ffloorflags |= FOF_CUTLEVEL;
|
||||
}
|
||||
|
||||
|
@ -6688,7 +6688,7 @@ void P_SpawnSpecials(boolean fromnetsave)
|
|||
//If inside is visible from the outside, cut inner walls
|
||||
if (lines[i].args[1] < 255 || (lines[i].args[3] & TMFA_SPLAT))
|
||||
ffloorflags |= FOF_CUTEXTRA|FOF_EXTRA;
|
||||
else if (!(lines[i].args[3] & TMFT_VISIBLEFROMINSIDE))
|
||||
else if (!(lines[i].args[4] & TMFT_VISIBLEFROMINSIDE))
|
||||
ffloorflags |= FOF_CUTLEVEL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue