Examples of IChunkLoader


Examples of net.minecraft.world.chunk.storage.IChunkLoader

      }
    }
    chunks.clear();
    LogHelper.info(providerServer.makeString());

    IChunkLoader chunkloader = providerServer.currentChunkLoader;
    providerServer.currentChunkLoader = null;
    for (int x1 = chunkX.intValue() - range; x1 <= chunkX.intValue() + range; x1++) {
      for (int z1 = chunkZ.intValue() - range; z1 <= chunkZ.intValue() + range; z1++) {
        // GenesisBiomeOverrideHandler.myQueue.add(new
        // GenesisBiomeOverrideHandler.coord(x1, z1));
View Full Code Here

Examples of net.minecraft.world.chunk.storage.IChunkLoader

  @Override
  @Declare
  public void ttStop() {
    unloaded = true;
    IChunkLoader chunkLoader = theChunkProviderServer.currentChunkLoader;
    if (chunkLoader instanceof AnvilChunkLoader) {
      try {
        ((AnvilChunkLoader) chunkLoader).close();
      } catch (NoSuchMethodError ignored) {
        //MCPC+ compatibility
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.