Show
Ignore:
Timestamp:
11/19/08 13:25:37 (17 years ago)
Author:
yumileroy
Message:

[svn] * Removing useless data accidentally committed.
* Applying ImpConfig? patch.
* Note: QUEUE_FOR_GM currently disabled as it's not compatible with the ACE patch. Anyone care to rewrite it?
* Note2: This is untested - I may have done some mistakes here and there. Will try to compile now.

Original author: XTZGZoReX
Date: 2008-10-10 13:37:21-05:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/game/BattleGroundWS.cpp

    r9 r34  
    2626#include "MapManager.h" 
    2727#include "Language.h" 
     28#include "World.h" 
    2829 
    2930BattleGroundWS::BattleGroundWS() 
     
    9899            SendMessageToAll(GetMangosString(LANG_BG_WS_BEGIN)); 
    99100 
    100             PlaySoundToAll(SOUND_BG_START); 
     101            if(sWorld.getConfig(CONFIG_BG_START_MUSIC)) 
     102            { 
     103                PlaySoundToAll(SOUND_BG_START); 
     104                PlaySoundToAll(SOUND_BG_START_L70ETC); //MUSIC - Custom config 
     105            } 
     106            else 
     107                PlaySoundToAll(SOUND_BG_START); 
    101108            SetStatus(STATUS_IN_PROGRESS); 
    102109