Examples of func_147453_f()


Examples of net.minecraft.world.World.func_147453_f()

            world.markBlockForUpdate(x, y, z);
            world.notifyBlockChange(x, y, z, Block.getBlockById(previousId));

            Block mcBlock = Block.getBlockById(previousId);
            if (mcBlock != null && mcBlock.hasComparatorInputOverride()) {
                world.func_147453_f(x, y, z, Block.getBlockById(block.getId()));
            }
        }

        return successful;
    }
View Full Code Here

Examples of net.minecraft.world.World.func_147453_f()

        IDyeableItem dyeable = (((holding != null) && (holding.getItem() instanceof IDyeableItem))
            ? (IDyeableItem)holding.getItem() : null);
        if ((dyeable != null) && (dyeable.canDye(holding))) {
          StackUtils.remove(holding, "display", "color");
          world.setBlockMetadataWithNotify(x, y, z, metadata - 1, 2);
          world.func_147453_f(x, y, z, block);
         
          event.useBlock = Result.DENY;
          event.useItem = Result.DENY;
        }
      }
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.