mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- fixed: A_AlertMonsters lost one 'self.' during conversion.
This commit is contained in:
parent
56a42a26b2
commit
f3762934e3
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ extend class Actor
|
||||||
{
|
{
|
||||||
target = self;
|
target = self;
|
||||||
}
|
}
|
||||||
else if (target != null && (self.target.player != null || (Flags & AMF_TARGETNONPLAYER)))
|
else if (self.target != null && (self.target.player != null || (Flags & AMF_TARGETNONPLAYER)))
|
||||||
{
|
{
|
||||||
target = self.target;
|
target = self.target;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue