[Classic] Do not announce Olympiad.

This commit is contained in:
MobiusDev 2015-05-02 17:15:10 +00:00
parent 386f5ed14e
commit c93caa3174
2 changed files with 2 additions and 2 deletions

View File

@ -313,9 +313,9 @@ public final class GameServer
GrandBossManager.getInstance().initZones();
EventDroplist.getInstance();
printSection("Olympiad");
if (!Config.SERVER_CLASSIC_SUPPORT)
{
printSection("Olympiad");
Olympiad.getInstance();
}
Hero.getInstance();

View File

@ -491,7 +491,7 @@ public class Olympiad extends ListenersContainer
_logResults.info("Result,Player1,Player2,Player1 HP,Player2 HP,Player1 Damage,Player2 Damage,Points,Classed");
_gameManager = ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(OlympiadGameManager.getInstance(), 30000, 30000);
if (Config.ALT_OLY_ANNOUNCE_GAMES)
if (Config.ALT_OLY_ANNOUNCE_GAMES && !Config.SERVER_CLASSIC_SUPPORT)
{
_gameAnnouncer = ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new OlympiadAnnouncer(), 30000, 500);
}