if (Configurator.gen_Volcano) if (Configurator.gen_Volcano_resistance <= 0 || r.nextInt(Configurator.gen_Volcano_resistance) == 0)
{
int x = chunkX * 16 + r.nextInt(16);
int y = r.nextInt(64);
int z = chunkZ * 16 + r.nextInt(16);
new GeneratorVolcano(ProjectRedExploration.blockDecoratives(), DecorativeStoneDefs.BASALT().meta(), MathHelper.getRandomIntegerInRange(r, 32000, 64000)).generate(w, r, x, y, z);
}
}