Package mapwriter.tasks

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

Related Classes of mapwriter.tasks.SaveChunkTask

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.