fix(Core/Battleground): must fix IC scoreboard (#2597)

This commit is contained in:
Viste
2020-01-21 19:47:16 +03:00
committed by Kargatum
parent eadcb1a782
commit b66ec5712e

View File

@@ -352,7 +352,7 @@ void BattlegroundIC::HandleAreaTrigger(Player* player, uint32 trigger)
void BattlegroundIC::UpdatePlayerScore(Player* player, uint32 type, uint32 value, bool doAddHonor)
{
std::map<uint64, BattlegroundScore*>::iterator itr = PlayerScores.find(player->GetGUID());
BattlegroundScoreMap::iterator itr = PlayerScores.find(player->GetGUID());
if (itr == PlayerScores.end())
return;