Added missing return statement.

Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
ApoC 2010-06-15 14:48:32 +02:00
parent 9811858d44
commit 38dbd27569

View file

@ -21215,7 +21215,7 @@ PlayerTalent const* Player::GetTalentById(int32 talentId) const
if (itr != m_talents[m_activeSpec].end())
return &itr->second;
else
NULL;
return NULL;
}
void Player::LearnTalent(uint32 talentId, uint32 talentRank)