Examples of LogKillsDeathsJob


Examples of com.tommytony.war.job.LogKillsDeathsJob

    War.war.getServer().getPluginManager().callEvent(event1);
    if (!teamScores.toString().isEmpty()) {
      this.broadcast("zone.battle.newscores", teamScores.toString());
    }
    if (War.war.getMysqlConfig().isEnabled() && War.war.getMysqlConfig().isLoggingEnabled()) {
      LogKillsDeathsJob logKillsDeathsJob = new LogKillsDeathsJob(ImmutableList.copyOf(this.getKillsDeathsTracker()));
      War.war.getServer().getScheduler().runTaskAsynchronously(War.war, logKillsDeathsJob);
    }
    this.getKillsDeathsTracker().clear();
    if (!detectScoreCap()) {
      this.broadcast("zone.battle.reset");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.