aboutsummaryrefslogtreecommitdiff
path: root/src/game/BattleGround.cpp
diff options
context:
space:
mode:
authorRat <none@none>2010-06-02 20:41:31 +0200
committerRat <none@none>2010-06-02 20:41:31 +0200
commitdd24d8031286f7448b0ee79c03a6657ba5f6d8d7 (patch)
tree84c41444bfec17e706160b2f4ea9fb55b1e618b5 /src/game/BattleGround.cpp
parent5981aa5495494da28a4175c70049b6f86d061a4d (diff)
stick with 1x rates, thankya
--HG-- branch : trunk
Diffstat (limited to 'src/game/BattleGround.cpp')
-rw-r--r--src/game/BattleGround.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/BattleGround.cpp b/src/game/BattleGround.cpp
index ad279da0628..5fd7e7a3f6b 100644
--- a/src/game/BattleGround.cpp
+++ b/src/game/BattleGround.cpp
@@ -805,7 +805,7 @@ void BattleGround::EndBattleGround(uint32 winner)
{
if (IsRandom() || BattleGroundMgr::IsBGWeekend(GetTypeID()))
{
- UpdatePlayerScore(plr, SCORE_BONUS_HONOR, GetBonusHonorFromKill(win_kills*2));
+ UpdatePlayerScore(plr, SCORE_BONUS_HONOR, GetBonusHonorFromKill(win_kills));
plr->ModifyArenaPoints(win_arena);
if (!plr->GetRandomWinner())
plr->SetRandomWinner(true);
@@ -816,7 +816,7 @@ void BattleGround::EndBattleGround(uint32 winner)
else
{
if (IsRandom() || BattleGroundMgr::IsBGWeekend(GetTypeID()))
- UpdatePlayerScore(plr, SCORE_BONUS_HONOR, GetBonusHonorFromKill(loos_kills*4));
+ UpdatePlayerScore(plr, SCORE_BONUS_HONOR, GetBonusHonorFromKill(loos_kills));
}