Package com.garbagemule.MobArena.time

Examples of com.garbagemule.MobArena.time.Time


        this.startDelayTimer = new StartDelayTimer(this, autoStartTimer);

        this.isolatedChat  = settings.getBoolean("isolated-chat", false);
       
        String timeString = settings.getString("player-time-in-arena", "world");
        Time time = Enums.getEnumFromString(Time.class, timeString);
        this.timeStrategy = (time != null ? new TimeStrategyLocked(time) : new TimeStrategyNull());
       
        // Scoreboards
        this.scoreboard = (settings.getBoolean("use-scoreboards", true) ? new ScoreboardManager(this) : new NullScoreboardManager(this));
    }
View Full Code Here

TOP

Related Classes of com.garbagemule.MobArena.time.Time

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.