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

Examples of org.spout.vanilla.world.generator.theend.object.SpireObject


    int z = chunk.getBlockZ(random);
    int y = getHighestWorkableBlock(world, x, z);
    if (y == -1) {
      return;
    }
    final SpireObject spire = new SpireObject();
    spire.setRandom(random);
    spire.randomize();
    if (spire.canPlaceObject(world, x, y, z)) {
      spire.placeObject(world, x, y, z);
    }
  }
View Full Code Here

TOP

Related Classes of org.spout.vanilla.world.generator.theend.object.SpireObject

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.