From 531e4b020783beb87b5a6d825c88063c935924eb Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Wed, 24 Sep 2014 13:50:18 -0400 Subject: [PATCH] Fix function signature of Mob::IsRaidTarget() so its actually a virtual --- zone/mob.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/mob.h b/zone/mob.h index 4e72f0264..93682962c 100644 --- a/zone/mob.h +++ b/zone/mob.h @@ -526,7 +526,7 @@ public: //More stuff to sort: - virtual bool IsRaidTarget() { return false; }; + virtual bool IsRaidTarget() const { return false; }; virtual bool IsAttackAllowed(Mob *target, bool isSpellAttack = false); bool IsTargeted() const { return (targeted > 0); } inline void IsTargeted(int in_tar) { targeted += in_tar; if(targeted < 0) targeted = 0;}