Core/Creatures: Allow talent reset gossip from level 15 instead of 10 since that is when first talent is available

This commit is contained in:
Shauren
2017-07-24 23:24:32 +02:00
parent 67796304fe
commit 3107dfe3e7

View File

@@ -998,7 +998,7 @@ bool Creature::isCanInteractWithBattleMaster(Player* player, bool msg) const
bool Creature::isCanTrainingAndResetTalentsOf(Player* player) const
{
return player->getLevel() >= 10
return player->getLevel() >= 15
&& GetCreatureTemplate()->trainer_type == TRAINER_TYPE_CLASS
&& player->getClass() == GetCreatureTemplate()->trainer_class;
}