Package net.minecraft.server

Examples of net.minecraft.server.ChunkCoordinates


            world.a(new WorldManager(null, world));
            world.j = mobs ? 1 : 0;
            world.a(mobs, animals);
            // CraftBukkit end
           
            ChunkCoordinates chunkcoordinates = world.m(); // CraftBukkit

            short radius = 196;
            long j = System.currentTimeMillis();
            for (int k = -radius; k <= radius; k += 16) {
                for (int l = -radius; l <= radius; l += 16) {
View Full Code Here


  public static boolean isPair(Object chunkCoordIntPair) {
    return chunkCoordIntPair instanceof ChunkCoordIntPair;
  }

  public static Object newCoord(int x, int y, int z) {
    return new ChunkCoordinates(x, y, z);
  }
View Full Code Here

  public static Object newCoord(int x, int y, int z) {
    return new ChunkCoordinates(x, y, z);
  }

  public static IntVector3 getCoord(Object chunkCoordinates) {
    ChunkCoordinates coord = (ChunkCoordinates) chunkCoordinates;
    return new IntVector3(coord.x, coord.y, coord.z);
  }
View Full Code Here

TOP

Related Classes of net.minecraft.server.ChunkCoordinates

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.