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

Examples of org.spout.vanilla.world.generator.normal.object.WellObject


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

TOP

Related Classes of org.spout.vanilla.world.generator.normal.object.WellObject

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.