aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/game/Creature.cpp4
1 files changed, 2 insertions, 2 deletions
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());