Core/SAI: Add check so npc will not send text to pet. Also updated isPet() to IsPet().

This commit is contained in:
Malcrom
2013-06-11 18:39:51 -02:30
parent 9ec22fffa0
commit 047608e7de
33 changed files with 134 additions and 134 deletions
+1 -1
View File
@@ -796,7 +796,7 @@ public:
static bool HandleDebugThreatListCommand(ChatHandler* handler, char const* /*args*/)
{
Creature* target = handler->getSelectedCreature();
if (!target || target->isTotem() || target->isPet())
if (!target || target->isTotem() || target->IsPet())
return false;
ThreatContainer::StorageType const &threatList = target->getThreatManager().getThreatList();