Package net.minecraft.world.gen.feature

Examples of net.minecraft.world.gen.feature.WorldGenGlowStone1


        for (xPos = 0; doGen && xPos < i1; ++xPos)
        {
            yPos = blockX + this.hellRNG.nextInt(16) + 8;
            zPos = this.hellRNG.nextInt(120) + 4;
            i2 = blockZ + this.hellRNG.nextInt(16) + 8;
            (new WorldGenGlowStone1()).generate(this.worldObj, this.hellRNG, yPos, zPos, i2);
        }

        for (xPos = 0; doGen && xPos < 10; ++xPos)
        {
            yPos = blockX + this.hellRNG.nextInt(16) + 8;
View Full Code Here

TOP

Related Classes of net.minecraft.world.gen.feature.WorldGenGlowStone1

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.