for (int i = 0; i < 2; i++)
{
int x = chunkX * 16 + r.nextInt(16);
int y = r.nextInt(48);
int z = chunkZ * 16 + r.nextInt(16);
new GeneratorOre(ProjectRedExploration.blockOres(), OreDefs.ORERUBY().meta(), 5).generate(w, r, x, y, z);
}
// Saphire
if (Configurator.gen_Sapphire) if (Configurator.gen_Sapphire_resistance <= 0 || r.nextInt(Configurator.gen_Sapphire_resistance) == 0)
for (int i = 0; i < 2; i++)
{
int x = chunkX * 16 + r.nextInt(16);
int y = r.nextInt(48);
int z = chunkZ * 16 + r.nextInt(16);
new GeneratorOre(ProjectRedExploration.blockOres(), OreDefs.ORESAPPHIRE().meta(), 5).generate(w, r, x, y, z);
}
// Peridot
if (Configurator.gen_Peridot) if (Configurator.gen_Peridot_resistance <= 0 || r.nextInt(Configurator.gen_Peridot_resistance) == 0)
for (int i = 0; i < 2; i++)
{
int x = chunkX * 16 + r.nextInt(16);
int y = r.nextInt(48);
int z = chunkZ * 16 + r.nextInt(16);
new GeneratorOre(ProjectRedExploration.blockOres(), OreDefs.OREPERIDOT().meta(), 5).generate(w, r, x, y, z);
}
}