Merge pull request #5563 from Souler/fix_ds_pipe_knockback

Fix broken-compile introduced in b0c70f43
This commit is contained in:
Manuel Carrasco
2012-03-04 21:34:40 -08:00

View File

@@ -143,8 +143,8 @@ void BattlegroundDS::StartingEventOpenDoors()
// Remove effects of Demonic Circle Summon
for (BattlegroundPlayerMap::const_iterator itr = GetPlayers().begin(); itr != GetPlayers().end(); ++itr)
if (Player* player = ObjectAccessor::FindPlayer(itr->first))
if (itr->HasAura(48018))
itr->RemoveAurasDueToSpell(48018);
if (player->HasAura(48018))
player->RemoveAurasDueToSpell(48018);
}
void BattlegroundDS::AddPlayer(Player* player)