From 4b82035006eef10efa5794da305488b838f16cd3 Mon Sep 17 00:00:00 2001 From: QAston Date: Thu, 12 Mar 2009 23:40:55 +0100 Subject: *Fix traps. Thanks to megamage for help. --HG-- branch : trunk --- src/game/GridNotifiers.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/game/GridNotifiers.h b/src/game/GridNotifiers.h index 8e427366f1a..ba487dec55f 100644 --- a/src/game/GridNotifiers.h +++ b/src/game/GridNotifiers.h @@ -600,8 +600,12 @@ namespace Trinity AnyUnfriendlyNoTotemUnitInObjectRangeCheck(WorldObject const* obj, Unit const* funit, float range) : i_obj(obj), i_funit(funit), i_range(range) {} bool operator()(Unit* u) { - if(u->isAlive() && i_obj->IsWithinDistInMap(u, i_range) && !i_funit->IsFriendlyTo(u) && !((Creature*)u)->isTotem()) + if(u->isAlive() && i_obj->IsWithinDistInMap(u, i_range) && !i_funit->IsFriendlyTo(u)) + { + if (u->GetTypeId()==TYPEID_UNIT && !((Creature*)u)->isTotem()) + return false; return true; + } else return false; } -- cgit v1.2.3