Core/Creatures: the required level for resetting talents should be 10

This commit is contained in:
Ovahlord
2020-01-13 02:40:32 +01:00
parent 5ce44296d0
commit 0f73f8aeed

View File

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