Merge branch '1.11.2' of https://github.com/TechReborn/TechReborn into 1.11.2
This commit is contained in:
commit
b4a2138cb9
1 changed files with 4 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue