Fixed bismuth to karmesine

This commit is contained in:
Robert Sosnitzka
2016-05-02 18:41:42 +02:00
parent ec996ab1af
commit d1793808c4
2 changed files with 6 additions and 6 deletions

View File

@@ -13,10 +13,10 @@ public class StateMatcher implements Predicate<IBlockState> {
private final Comparable value;
private StateMatcher(IBlockState state, IProperty property, Comparable value) {
this.state = state;
this.property = property;
this.value = value;
}
this.state = state;
this.property = property;
this.value = value;
}
public static StateMatcher forState(IBlockState state, IProperty property, Comparable value) {
return new StateMatcher(state, property, value);

View File

@@ -30,8 +30,8 @@ public class ZWorldGen implements IWorldGenerator {
Generator.generateOre(ZCompression.vibraniumOre.getDefaultState(), random, x, z, world, 18, 48, 64, 2, 4);
Generator.generateOre(ZCompression.bismuthOre.getDefaultState(), random, x, z, world, 30, 16, 48, 2, 5);
Generator.generateOre(ZCompression.bismuthOre.getDefaultState(), random, x, z, world, 30, 32, 64, 2, 4);
Generator.generateOre(ZCompression.karmesineOre.getDefaultState(), random, x, z, world, 30, 16, 48, 2, 5);
Generator.generateOre(ZCompression.bismuthOre.getDefaultState(), random, x, z, world, 50, 50, 130, 2, 4);
Generator.generateOre(ZCompression.mythrilOre.getDefaultState(), random, x, z, world, 18, 16, 32, 2, 4);
Generator.generateOre(ZCompression.meteoriteOre.getDefaultState(), random, x, z, world, 25, 0, 32, 3, 6);
Generator.generateOre(ZCompression.mindoriteOre.getDefaultState(), Blocks.STONE.getDefaultState(), BlockStone.VARIANT, BlockStone.EnumType.DIORITE, random, x, z, world, 200, 16, 96, 2, 4);