diff --git a/src/game/Player.cpp b/src/game/Player.cpp index e689cd828..d6cc2521b 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -19464,19 +19464,17 @@ void Player::AutoStoreLoot(uint8 bag, uint8 slot, uint32 loot_id, LootStore cons uint32 Player::CalculateTalentsPoints() const { - uint32 base_talent = getLevel() < 10 ? 0 : uint32((getLevel()-9)*sWorld.getRate(RATE_TALENT)); + uint32 base_talent = getLevel() < 10 ? 0 : getLevel()-9; if(getClass() != CLASS_DEATH_KNIGHT) - return base_talent; + return uint32(base_talent * sWorld.getRate(RATE_TALENT)); - uint32 talentPointsForLevel = - (getLevel() < 56 ? 0 : uint32((getLevel()-55)*sWorld.getRate(RATE_TALENT))) - + m_questRewardTalentCount; + uint32 talentPointsForLevel = getLevel() < 56 ? 0 : getLevel() - 55 + m_questRewardTalentCount; if(talentPointsForLevel > base_talent) talentPointsForLevel = base_talent; - return talentPointsForLevel; + return uint32(talentPointsForLevel * sWorld.getRate(RATE_TALENT)); } bool Player::IsAllowUseFlyMountsHere() const diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index a6b012d69..583662128 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 "8084" + #define REVISION_NR "8085" #endif // __REVISION_NR_H__