From b66ec5712ed27f165b8f79b5b50203590698cb8c Mon Sep 17 00:00:00 2001 From: Viste Date: Tue, 21 Jan 2020 19:47:16 +0300 Subject: [PATCH] fix(Core/Battleground): must fix IC scoreboard (#2597) --- src/server/game/Battlegrounds/Zones/BattlegroundIC.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundIC.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundIC.cpp index 62ff8c717..9c75b058d 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundIC.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundIC.cpp @@ -352,7 +352,7 @@ void BattlegroundIC::HandleAreaTrigger(Player* player, uint32 trigger) void BattlegroundIC::UpdatePlayerScore(Player* player, uint32 type, uint32 value, bool doAddHonor) { - std::map::iterator itr = PlayerScores.find(player->GetGUID()); + BattlegroundScoreMap::iterator itr = PlayerScores.find(player->GetGUID()); if (itr == PlayerScores.end()) return;