Package net.minecraft.world.gen.feature

Examples of net.minecraft.world.gen.feature.WorldGenDesertWells.generate()


        if (rand.nextInt(1000) == 0)
        {
            final int x1 = x + rand.nextInt(16) + 8;
            final int z1 = z + rand.nextInt(16) + 8;
            final WorldGenDesertWells wells = new WorldGenDesertWells();
            wells.generate(world, rand, x1,
                    world.getHeightValue(x1, z1) + 1, z1);
        }
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.