[11978] Remove outdated comment

Signed-off-by: Schmoozerd <schmoozerd@scriptdev2.com>
This commit is contained in:
Den 2012-04-24 22:15:17 +02:00 committed by Schmoozerd
parent e29e640341
commit 24574b000e
2 changed files with 7 additions and 7 deletions

View file

@ -446,14 +446,14 @@ void BattleGround::Update(uint32 diff)
SetStatus(STATUS_IN_PROGRESS);
SetStartDelayTime(m_StartDelayTimes[BG_STARTING_EVENT_FOURTH]);
//remove preparation
// remove preparation
if (isArena())
{
//TODO : add arena sound PlaySoundToAll(SOUND_ARENA_START);
for(BattleGroundPlayerMap::const_iterator itr = m_Players.begin(); itr != m_Players.end(); ++itr)
if (Player *plr = sObjectMgr.GetPlayer(itr->first))
plr->RemoveAurasDueToSpell(SPELL_ARENA_PREPARATION);
for (BattleGroundPlayerMap::const_iterator itr = m_Players.begin(); itr != m_Players.end(); ++itr)
{
if (Player* player = sObjectMgr.GetPlayer(itr->first))
player->RemoveAurasDueToSpell(SPELL_ARENA_PREPARATION);
}
CheckArenaWinConditions();
}

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "11977"
#define REVISION_NR "11978"
#endif // __REVISION_NR_H__