Package mrtjp.projectred.core.libmc.world

Examples of mrtjp.projectred.core.libmc.world.GeneratorVolcano


            {
                //Volcanos
                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);
            }
        }
View Full Code Here


        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);
        }
    }
View Full Code Here

TOP

Related Classes of mrtjp.projectred.core.libmc.world.GeneratorVolcano

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.