Package com.tommytony.war.job

Examples of com.tommytony.war.job.RestoreWarzonesJob


      }
    }

    // warzones
    String warzonesStr = warConfig.getString("warzones");
    RestoreWarzonesJob restoreWarzones = new RestoreWarzonesJob(warzonesStr, newWar, convertingToYml);
    // make sure warhub job is over before this one ends, because this job will launch conversion (which needs the warhub)
    if (War.war.getServer().getScheduler().scheduleSyncDelayedTask(War.war, restoreWarzones, 20) == -1) {
      War.war.log("Failed to schedule warzone-restore job. No warzone was loaded.", Level.WARNING);
    }
   
View Full Code Here

TOP

Related Classes of com.tommytony.war.job.RestoreWarzonesJob

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.