Package cofh.core.world.TickHandlerWorld

Examples of cofh.core.world.TickHandlerWorld.RetroChunkCoord


      if (chunks == null) {
        TickHandlerWorld.chunksToGen.put(dim, new ArrayDeque<RetroChunkCoord>(128));
        chunks = TickHandlerWorld.chunksToGen.get(dim);
      }
      if (chunks != null) {
        chunks.addLast(new RetroChunkCoord(cCoord, list));
        TickHandlerWorld.chunksToGen.put(dim, chunks);
      }
    }
  }
View Full Code Here

TOP

Related Classes of cofh.core.world.TickHandlerWorld.RetroChunkCoord

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.