- fixed: LookForEnemiesInBlock needs to check for MF7_NEVERTARGET.

This commit is contained in:
Christoph Oelckers 2013-08-18 09:11:40 +02:00
parent 62830f7927
commit 116defbb35
1 changed files with 3 additions and 0 deletions

View File

@ -1425,6 +1425,9 @@ AActor *LookForEnemiesInBlock (AActor *lookee, int index, void *extparam)
if (!(link->flags3 & MF3_ISMONSTER))
continue; // don't target it if it isn't a monster (could be a barrel)
if (link->flags7 & MF7_NEVERTARGET)
continue;
other = NULL;
if (link->flags & MF_FRIENDLY)
{