Examples of unloadChunkRequest()


Examples of org.bukkit.World.unloadChunkRequest()

        while (iter.hasNext()) {
          chunk = iter.next();
          if (!newChunksBuffer.contains(chunk)) {
            cx = chunk.x;
            cz = chunk.z;
            world.unloadChunkRequest(cx, cz);
          }
        }
        // Load the new chunks
        iter = newChunksBuffer.iterator();
        while (iter.hasNext()) {
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.