From 8ba75526b5fb7f497384cfcd36edf7d6df77df94 Mon Sep 17 00:00:00 2001 From: Brian Date: Wed, 17 Feb 2010 02:17:17 -0700 Subject: * Properly fix bogus pet trainers error message --HG-- branch : trunk --- src/game/Creature.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/game/Creature.cpp b/src/game/Creature.cpp index cd9f8d8f009..3e834f4aca0 100644 --- a/src/game/Creature.cpp +++ b/src/game/Creature.cpp @@ -810,12 +810,12 @@ bool Creature::Create(uint32 guidlow, Map *map, uint32 phaseMask, uint32 Entry, bool Creature::isCanTrainingOf(Player* pPlayer, bool msg) const { - if(!isTrainer() || GetCreatureInfo()->trainer_type == TRAINER_TYPE_PETS) + if(!isTrainer()) return false; TrainerSpellData const* trainer_spells = GetTrainerSpells(); - if(!trainer_spells || trainer_spells->spellList.empty()) + if((!trainer_spells || trainer_spells->spellList.empty()) && GetCreatureInfo()->trainer_type != TRAINER_TYPE_PETS) { sLog.outErrorDb("Creature %u (Entry: %u) have UNIT_NPC_FLAG_TRAINER but have empty trainer spell list.", GetGUIDLow(),GetEntry()); -- cgit v1.2.3