From fa0f1be90fc09bda512042f94e2fe52adaee1668 Mon Sep 17 00:00:00 2001 From: ApoC Date: Tue, 15 Jun 2010 14:48:32 +0200 Subject: [PATCH] Added missing return statement. Signed-off-by: ApoC --- src/game/Player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/Player.cpp b/src/game/Player.cpp index 0d873563761..c231e7d8d3a 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -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)