Examples of SaveChunkTask


Examples of mapwriter.tasks.SaveChunkTask

 
  private void addSaveChunkTask(Chunk chunk) {
    if ((this.mw.multiplayer && this.mw.regionFileOutputEnabledMP) ||
      (!this.mw.multiplayer && this.mw.regionFileOutputEnabledSP)) {
      if (!chunk.isEmpty()) {
        this.mw.executor.addTask(new SaveChunkTask(copyToMwChunk(chunk), this.mw.regionManager));
      }
    }
  }
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.