Examples of saveChunk()


Examples of org.getspout.spoutapi.chunkstore.SimpleChunkDataManager.saveChunk()

  }

  @EventHandler(priority = EventPriority.MONITOR)
  public void onChunkUnload(ChunkUnloadEvent event) {
    SimpleChunkDataManager dm = (SimpleChunkDataManager)SpoutManager.getChunkDataManager();
    dm.saveChunk(event.getChunk(), true);
  }

  @EventHandler(priority = EventPriority.MONITOR)
  public void onWorldSave(WorldSaveEvent event) {
    SimpleChunkDataManager dm = (SimpleChunkDataManager)SpoutManager.getChunkDataManager();
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.