diff options
author | Rat <none@none> | 2010-05-17 17:10:24 +0200 |
---|---|---|
committer | Rat <none@none> | 2010-05-17 17:10:24 +0200 |
commit | 9a631614e38d5b24a7c53fe7f686a96e9abb529a (patch) | |
tree | d27ca41cdee96804db9111536aa3e79faf317a1e /src/game/BattleGroundAV.cpp | |
parent | 47b32302f1ab40255c63da57ee2129b945c3765e (diff) |
display honor gained from kills in bg score window
--HG--
branch : trunk
Diffstat (limited to 'src/game/BattleGroundAV.cpp')
-rw-r--r-- | src/game/BattleGroundAV.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/BattleGroundAV.cpp b/src/game/BattleGroundAV.cpp index 28cc6d3e908..7f5482cbf16 100644 --- a/src/game/BattleGroundAV.cpp +++ b/src/game/BattleGroundAV.cpp @@ -530,7 +530,7 @@ void BattleGroundAV::HandleAreaTrigger(Player *Source, uint32 Trigger) Source->CastSpell(Source, SpellId, true); } -void BattleGroundAV::UpdatePlayerScore(Player* Source, uint32 type, uint32 value) +void BattleGroundAV::UpdatePlayerScore(Player* Source, uint32 type, uint32 value, bool doAddHonor) { BattleGroundScoreMap::iterator itr = m_PlayerScores.find(Source->GetGUID()); @@ -561,7 +561,7 @@ void BattleGroundAV::UpdatePlayerScore(Player* Source, uint32 type, uint32 value ((BattleGroundAVScore*)itr->second)->SecondaryObjectives += value; break; default: - BattleGround::UpdatePlayerScore(Source,type,value); + BattleGround::UpdatePlayerScore(Source,type,value, doAddHonor); break; } } |