Package com.tommytony.war.job

Examples of com.tommytony.war.job.RestoreYmlWarzonesJob$PlotterEnabled


    YamlConfiguration warYmlConfig = YamlConfiguration.loadConfiguration(warYmlFile);
    ConfigurationSection warRootSection = warYmlConfig.getConfigurationSection("set");
   
    // warzones
    List<String> warzones = warRootSection.getStringList("war.info.warzones");
    RestoreYmlWarzonesJob restoreWarzones = new RestoreYmlWarzonesJob(warzones)// during conversion, this should execute just after the RestoreTxtWarzonesJob
    if (War.war.getServer().getScheduler().scheduleSyncDelayedTask(War.war, restoreWarzones) == -1) {
      War.war.log("Failed to schedule warzone-restore job. No warzone was loaded.", Level.WARNING);
    }

    // zone makers
View Full Code Here

TOP

Related Classes of com.tommytony.war.job.RestoreYmlWarzonesJob$PlotterEnabled

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.