Examples of TallGrass


Examples of org.spout.vanilla.material.block.plant.TallGrass

        final int xx = x - 7 + random.nextInt(15);
        final int zz = z - 7 + random.nextInt(15);
        final int yy = getHighestWorkableBlock(world, xx, zz);
        if (yy != -1 && world.getBlockMaterial(xx, yy, zz) == VanillaMaterials.AIR
            && canTallGrassStay(world.getBlock(xx, yy, zz))) {
          final TallGrass grass = factory.make(random);
          world.setBlockMaterial(xx, yy, zz, grass, grass.getData(), null);
        }
      }
    }
  }
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.