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

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


      return;
    }
    if (random.nextInt(odd) != 0) {
      return;
    }
    final Temple temple = new Temple();
    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);
    }
  }
View Full Code Here

TOP

Related Classes of org.spout.vanilla.world.generator.normal.structure.temple.Temple

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.