int firstBlockZCoord = 16 * chunkZ + random.nextInt(16);
ItemStack itemStack = EnumOreFrequency.getRandomOre(random);
for (int l = 0; l < 200; l++) {
int firstBlockYCoord = random.nextInt(245) + 6;
WorldGenMinable mineable = new WorldGenMinable(Block.getBlockFromItem(itemStack.getItem()), itemStack.getItemDamage(), random.nextInt(20), Blocks.bedrock);
mineable.generate(world, random, firstBlockXCoord, firstBlockYCoord, firstBlockZCoord);
}
}
}
}