Skip to content

Commit

Permalink
Added missing return statement.
Browse files Browse the repository at this point in the history
Signed-off-by: ApoC <apoc@nymfe.net>
  • Loading branch information
apoc committed Jun 15, 2010
1 parent 0a0dd35 commit fa0f1be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/Player.cpp
Expand Up @@ -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)
Expand Down

0 comments on commit fa0f1be

Please sign in to comment.