mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- fixed: In Hexen, ThrustThing can not be triggered from the backside of a line.
This gets only activated when the HEXENHACK flag is set. For ZDoom maps there is a specific line flag to handle this condition explicitly.
This commit is contained in:
parent
caf2ca0df7
commit
e290bc6fd0
1 changed files with 4 additions and 0 deletions
|
@ -1115,6 +1115,10 @@ FUNC(LS_ThrustThing)
|
||||||
}
|
}
|
||||||
else if (it)
|
else if (it)
|
||||||
{
|
{
|
||||||
|
if (level.flags2 & LEVEL2_HEXENHACK && backSide)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
ThrustThingHelper (it, BYTEANGLE(arg0), arg1, arg2);
|
ThrustThingHelper (it, BYTEANGLE(arg0), arg1, arg2);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue