Examples of BiomeGenBase


Examples of net.minecraft.world.biome.BiomeGenBase

    return coordinates;
  }

  private ChunkCoordinates getChunkCoordinates(Vect pos, World world, ArrayList<Integer> biomesToSearch, boolean loadChunks) {

    BiomeGenBase biome = world.getBiomeGenForCoords(pos.x, pos.z);

    if (biomesToSearch.contains(biome.biomeID))
      return new ChunkCoordinates(pos.x, pos.y, pos.z);

    return null;
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.