From c07634034787d6189edef1b5fae4c805ccf3adbb Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Fri, 21 Jan 2022 15:00:53 +0100 Subject: [PATCH] warning fix --- src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp index b7acb88b9d2..09a81d83a17 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp @@ -476,7 +476,7 @@ void BattlegroundAV::EndBattleground(uint32 winner) } } - for (int i = TEAM_ALLIANCE; i <= TEAM_HORDE; ++i) + for (uint8 i = TEAM_ALLIANCE; i <= TEAM_HORDE; ++i) { if (m_CaptainAlive[i]) {