diff options
Diffstat (limited to 'src/game/BattleGroundWS.cpp')
-rw-r--r-- | src/game/BattleGroundWS.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/BattleGroundWS.cpp b/src/game/BattleGroundWS.cpp index 71134149618..71872511274 100644 --- a/src/game/BattleGroundWS.cpp +++ b/src/game/BattleGroundWS.cpp @@ -754,7 +754,7 @@ void BattleGroundWS::HandleKillPlayer(Player *player, Player *killer) BattleGround::HandleKillPlayer(player, killer); } -void BattleGroundWS::UpdatePlayerScore(Player *Source, uint32 type, uint32 value) +void BattleGroundWS::UpdatePlayerScore(Player *Source, uint32 type, uint32 value, bool doAddHonor) { BattleGroundScoreMap::iterator itr = m_PlayerScores.find(Source->GetGUID()); @@ -770,7 +770,7 @@ void BattleGroundWS::UpdatePlayerScore(Player *Source, uint32 type, uint32 value ((BattleGroundWGScore*)itr->second)->FlagReturns += value; break; default: - BattleGround::UpdatePlayerScore(Source, type, value); + BattleGround::UpdatePlayerScore(Source, type, value, doAddHonor); break; } } |