diff --git a/src/game/Player.cpp b/src/game/Player.cpp index afe746755..014a20dc4 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -19585,7 +19585,8 @@ uint32 Player::CalculateTalentsPoints() const if(getClass() != CLASS_DEATH_KNIGHT) return uint32(base_talent * sWorld.getRate(RATE_TALENT)); - uint32 talentPointsForLevel = getLevel() < 56 ? 0 : getLevel() - 55 + m_questRewardTalentCount; + uint32 talentPointsForLevel = getLevel() < 56 ? 0 : getLevel() - 55; + talentPointsForLevel += m_questRewardTalentCount; if(talentPointsForLevel > base_talent) talentPointsForLevel = base_talent; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index eb68d7a7d..0367e91b9 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "8164" + #define REVISION_NR "8165" #endif // __REVISION_NR_H__