Package org.spout.vanilla.world.generator.normal.structure.temple

Examples of org.spout.vanilla.world.generator.normal.structure.temple.Temple.placeObject()


    temple.setRandom(random);
    final World world = chunk.getWorld();
    final int x = chunk.getBlockX(random);
    final int z = chunk.getBlockZ(random);
    if (temple.canPlaceObject(world, x, 0, z)) {
      temple.placeObject(world, x, 0, z);
    }
  }

  public void setOdd(int odd) {
    this.odd = odd;
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.