Package org.spout.vanilla.world.generator.normal.object

Examples of org.spout.vanilla.world.generator.normal.object.HugeMushroomObject.placeObject()


      final int x = chunk.getBlockX(random);
      final int z = chunk.getBlockZ(random);
      final int y = getHighestWorkableBlock(world, x, z);
      mushroom.randomize();
      if (y != -1 && mushroom.canPlaceObject(world, x, y, z)) {
        mushroom.placeObject(world, x, y, z);
      }
    }
  }

  private int getHighestWorkableBlock(World world, int x, int z) {
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.