Package net.minecraft.src

Examples of net.minecraft.src.Block.canBeReplacedByLeaves()


      return;

    final Block block = Block.blocksList[world.getBlockId(x, y, z)];

    if (block == null
        || block.canBeReplacedByLeaves(world, x, y, z))
      setBlockAndMetadata(world, x, y, z, blockLeaf, metaLeaf);
  }

  protected void setWoodBlock(World world, int x, int y, int z) {
    final int id = world.getBlockId(x, y, z);
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.