mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-12 15:44:24 +00:00
- fixed some overlooked merging problem.
This commit is contained in:
parent
99fc685a01
commit
6996a15235
1 changed files with 1 additions and 2 deletions
|
@ -4597,11 +4597,10 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_Teleport)
|
||||||
ACTION_SET_RESULT(false);
|
ACTION_SET_RESULT(false);
|
||||||
if (!ref)
|
if (!ref)
|
||||||
{
|
{
|
||||||
ACTION_SET_RESULT(false);
|
|
||||||
return numret;
|
return numret;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((ref->flags2 & MF2_NOTELEPORT) && !(Flags & TF_OVERRIDE))
|
if ((ref->flags2 & MF2_NOTELEPORT) && !(flags & TF_OVERRIDE))
|
||||||
{
|
{
|
||||||
return numret;
|
return numret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue