Merge branch '1.11.2' of https://github.com/TechReborn/TechReborn into 1.11.2

This commit is contained in:
modmuss50 2017-02-16 08:27:57 +00:00
commit b4a2138cb9
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA

View file

@ -227,8 +227,10 @@ public class TechRebornWorldGen implements IWorldGenerator {
zPos = chunkZ * 16 + random.nextInt(16);
BlockPos pos = new BlockPos(xPos, yPos, zPos);
if(ore.blockNiceName.equalsIgnoreCase("iridium")){ //Work around for iridium
if(world.getBlockState(pos).getBlock().isReplaceableOreGen(world.getBlockState(pos), world, pos, predicate)){
world.setBlockState(pos, ore.state);
BlockPos iridiumPos = pos.add(8, 0, 8); // standard worldgen offset is added here like in WorldGenMinable#generate
IBlockState blockState = world.getBlockState(iridiumPos);
if(blockState.getBlock().isReplaceableOreGen(blockState, world, iridiumPos, predicate)){
world.setBlockState(iridiumPos, ore.state, 2);
}
} else {