From 2dc40d1a7d9009f1e39652853b44e0fc1d5502dd Mon Sep 17 00:00:00 2001 From: UltraNix <80540499+UltraNix@users.noreply.github.com> Date: Sun, 20 Feb 2022 19:44:18 +0100 Subject: [PATCH] fix(Core/Battlegrounds: Fixed doubled score in Alterac Valley battleground. (#10743) --- src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp index 55e92a552..ae1f1b0bc 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp @@ -573,10 +573,7 @@ bool BattlegroundAV::UpdatePlayerScore(Player* player, uint32 type, uint32 value case SCORE_TOWERS_DEFENDED: player->UpdateAchievementCriteria(ACHIEVEMENT_CRITERIA_TYPE_BG_OBJECTIVE_CAPTURE, AV_OBJECTIVE_DEFEND_TOWER); break; - case SCORE_MINES_CAPTURED: - break; default: - Battleground::UpdatePlayerScore(player, type, value, doAddHonor); break; }