forked from TAIGA/TAIGA
Fixed bismuth to karmesine
This commit is contained in:
@@ -13,10 +13,10 @@ public class StateMatcher implements Predicate<IBlockState> {
|
|||||||
private final Comparable value;
|
private final Comparable value;
|
||||||
|
|
||||||
private StateMatcher(IBlockState state, IProperty property, Comparable value) {
|
private StateMatcher(IBlockState state, IProperty property, Comparable value) {
|
||||||
this.state = state;
|
this.state = state;
|
||||||
this.property = property;
|
this.property = property;
|
||||||
this.value = value;
|
this.value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static StateMatcher forState(IBlockState state, IProperty property, Comparable value) {
|
public static StateMatcher forState(IBlockState state, IProperty property, Comparable value) {
|
||||||
return new StateMatcher(state, property, value);
|
return new StateMatcher(state, property, value);
|
||||||
|
@@ -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.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.karmesineOre.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.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.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.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);
|
Generator.generateOre(ZCompression.mindoriteOre.getDefaultState(), Blocks.STONE.getDefaultState(), BlockStone.VARIANT, BlockStone.EnumType.DIORITE, random, x, z, world, 200, 16, 96, 2, 4);
|
||||||
|
Reference in New Issue
Block a user