- fixed: A_AlertMonsters lost one 'self.' during conversion.

This commit is contained in:
Christoph Oelckers 2016-12-12 12:50:17 +01:00
parent 56a42a26b2
commit f3762934e3
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ extend class Actor
{
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;
}