diff options
Diffstat (limited to 'src/server')
-rw-r--r-- | src/server/game/Battlegrounds/Battleground.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Battlegrounds/Battleground.h b/src/server/game/Battlegrounds/Battleground.h index 1a396c67e70..a51b55f2866 100644 --- a/src/server/game/Battlegrounds/Battleground.h +++ b/src/server/game/Battlegrounds/Battleground.h @@ -442,7 +442,7 @@ class TC_GAME_API Battleground BattlegroundPlayer const* GetBattlegroundPlayerData(ObjectGuid const& playerGuid) const { - auto const& itr = m_Players.find(playerGuid); + auto itr = m_Players.find(playerGuid); if (itr == m_Players.end()) return nullptr; |