From 7148b62b1b5a9998ab4d15ff4cdf02dab670ab12 Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 21 Dec 2013 05:22:35 +1100 Subject: [PATCH] Fix something bad --- qcsrc/common/monsters/monster/mage.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/monsters/monster/mage.qc b/qcsrc/common/monsters/monster/mage.qc index 6822363c5..d340c09d7 100644 --- a/qcsrc/common/monsters/monster/mage.qc +++ b/qcsrc/common/monsters/monster/mage.qc @@ -63,7 +63,7 @@ float friend_needshelp(entity e) if(e.frozen) return FALSE; if(!IS_PLAYER(e)) - return (e.flags & FL_MONSTER && e.health < e.max_health); + return ((e.flags & FL_MONSTER) && e.health < e.max_health); if(e.items & IT_INVINCIBLE) return FALSE; -- 2.39.2