Core/Battlefield: Fixed using invalidated iterator when a player queued for wintergrasp is inside a battleground

Closes #29405
This commit is contained in:
Shauren
2023-11-02 14:17:43 +01:00
parent 01e684a7b0
commit 63cbef9e89

View File

@@ -265,11 +265,8 @@ void Battlefield::InvitePlayerToWar(Player* player)
if (player->IsInFlight())
return;
if (player->InArena() || player->GetBattleground())
{
m_PlayersInQueue[player->GetTeamId()].erase(player->GetGUID());
if (player->GetBattleground())
return;
}
// If the player does not match minimal level requirements for the battlefield, kick him
if (player->GetLevel() < m_MinLevel)