Added integration for non-vanilla dimensions.

Fixed some config basics.
This commit is contained in:
Robert Sosnitzka
2016-07-26 16:31:03 +02:00
parent f8984bec16
commit e8976365a2
4 changed files with 60 additions and 19 deletions

View File

@@ -15,10 +15,10 @@ import static com.sosnitzka.taiga.Blocks.*;
public class ZWorldGen implements IWorldGenerator {
private void nether(Random random, int x, int z, World world) {
Generator.generateNetherOre(titaniteOre.getDefaultState(), random, x, z, world, 30, 1, 64, 2, 12);
Generator.generateNetherOre(titaniteOre.getDefaultState(), random, x, z, world, 35, 1, 64, 2, 12);
Generator.generateNetherOre(tiberiumOre.getDefaultState(), random, x, z, world, 30, 1, 128, 7, 15);
Generator.generateNetherOre(palladiumOre.getDefaultState(), random, x, z, world, 30, 32, 64, 2, 7);
Generator.generateNetherOre(prometheumOre.getDefaultState(), random, x, z, world, 30, 64, 128, 2, 6);
Generator.generateNetherOre(palladiumOre.getDefaultState(), random, x, z, world, 35, 32, 64, 2, 6);
Generator.generateNetherOre(prometheumOre.getDefaultState(), random, x, z, world, 35, 64, 128, 2, 6);
}
private void world(Random random, int x, int z, World world) {
@@ -63,6 +63,9 @@ public class ZWorldGen implements IWorldGenerator {
case 1:
end(random, x, z, world);
break;
default:
world(random, x, z, world);
break;
}
}
}