Package forestry.core.worldgen

Examples of forestry.core.worldgen.WorldGenMinableMeta


  @Override
  public void generate(Random random, int chunkX, int chunkZ, World world, IChunkProvider chunkGenerator, IChunkProvider chunkProvider) {

    if (apatiteGenerator == null) {
      apatiteGenerator = new WorldGenMinableMeta(ForestryBlock.resources.block(), 0, 36);
      copperGenerator = new WorldGenMinableMeta(ForestryBlock.resources, 1, 6);
      tinGenerator = new WorldGenMinableMeta(ForestryBlock.resources, 2, 6);
    }

    // shift to world coordinates
    chunkX = chunkX << 4;
    chunkZ = chunkZ << 4;
View Full Code Here

TOP

Related Classes of forestry.core.worldgen.WorldGenMinableMeta

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.