diff options
author | Spp <none@none> | 2010-05-04 17:48:47 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-05-04 17:48:47 +0200 |
commit | 5b4647dcf40d91571d4f1c06d0c9d987724797d6 (patch) | |
tree | ababce766584a44aa9d9215ff19adbab6004a360 /src | |
parent | a65f6ab60e11ace5464cacbfaef6f59673da9687 (diff) |
Fix Honor Kill formula
Patch by JohnHoliver
Closes issue 1863
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Formulas.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Formulas.h b/src/game/Formulas.h index fd1d8b16049..81c7383de37 100644 --- a/src/game/Formulas.h +++ b/src/game/Formulas.h @@ -29,7 +29,7 @@ namespace Trinity { inline uint32 hk_honor_at_level(uint8 level, uint32 count = 1) { - return uint32(ceil(count*(-0.53177f + 0.59357f * exp((level + 23.54042f) / 26.07859f)))); + return uint32(ceil(count*2*(-0.53177f + 0.59357f * exp((level + 23.54042f) / 26.07859f)))); } } namespace XP |