From b66ded844e648ea3f6b3626948df909e8fdabb6b Mon Sep 17 00:00:00 2001 From: toasterbabe Date: Fri, 17 Mar 2017 23:09:15 +0000 Subject: [PATCH] compile fix --- src/p_mobj.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_mobj.c b/src/p_mobj.c index de6a604a1..4f6c07575 100644 --- a/src/p_mobj.c +++ b/src/p_mobj.c @@ -3965,7 +3965,7 @@ void P_DestroyRobots(void) continue; // not a mobj thinker mo = (mobj_t *)think; - if (mo->health <= 0 || !(mo->flags & MF_ENEMY || mo->flags & MF_BOSS)) + if (mo->health <= 0 || !(mo->flags & (MF_ENEMY|MF_BOSS))) continue; // not a valid enemy if (mo->type == MT_PLAYER) // Don't chase after other players!