[8927] added missing continue for last commit

This commit is contained in:
balrok 2009-12-06 10:00:52 +01:00
parent 1de6692e04
commit 23f603268d
2 changed files with 4 additions and 1 deletions

View file

@ -748,7 +748,10 @@ void BattleGround::EndBattleGround(uint32 winner)
}
Player *plr = sObjectMgr.GetPlayer(itr->first);
if (!plr)
{
sLog.outError("BattleGround:EndBattleGround Player (GUID: %u) not found!", GUID_LOPART(itr->first));
continue;
}
// should remove spirit of redemption
if (plr->HasAuraType(SPELL_AURA_SPIRIT_OF_REDEMPTION))