mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-25 13:51:43 +00:00
Support plane type 3 in the "copy portal" line special
SRB2 doesn't implement sector portals the way ZDoom does, but this ensures plane type 3 acts the same as plane type 2.
This commit is contained in:
parent
e230d38aad
commit
50506254e8
1 changed files with 1 additions and 1 deletions
|
@ -7362,7 +7362,7 @@ void P_SpawnSpecials(boolean fromnetsave)
|
||||||
int tag_to_copy = lines[i].args[3];
|
int tag_to_copy = lines[i].args[3];
|
||||||
|
|
||||||
boolean floor, ceiling;
|
boolean floor, ceiling;
|
||||||
if (plane_type == TMP_BOTH)
|
if (plane_type == TMP_BOTH || plane_type == 3)
|
||||||
floor = ceiling = true;
|
floor = ceiling = true;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue