From dc3df3edd5843bde0c1335d6a8e460b2c832aa48 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Sat, 17 Jun 2017 08:12:18 +0300 Subject: full project files --- javadoc/net/minecraft/block/BlockDeadBush.html | 440 +++++++++++++++++++++++++ 1 file changed, 440 insertions(+) create mode 100644 javadoc/net/minecraft/block/BlockDeadBush.html (limited to 'javadoc/net/minecraft/block/BlockDeadBush.html') diff --git a/javadoc/net/minecraft/block/BlockDeadBush.html b/javadoc/net/minecraft/block/BlockDeadBush.html new file mode 100644 index 0000000..6a52854 --- /dev/null +++ b/javadoc/net/minecraft/block/BlockDeadBush.html @@ -0,0 +1,440 @@ + + + + + +BlockDeadBush (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.block
+

Class BlockDeadBush

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        BlockDeadBush

        +
        protected BlockDeadBush()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        getItemDropped

        +
        public Item getItemDropped(int p_149650_1_,
        +                  java.util.Random p_149650_2_,
        +                  int p_149650_3_)
        +
        +
        Overrides:
        +
        getItemDropped in class Block
        +
        +
      • +
      + + + +
        +
      • +

        harvestBlock

        +
        public void harvestBlock(World p_149636_1_,
        +                EntityPlayer p_149636_2_,
        +                int p_149636_3_,
        +                int p_149636_4_,
        +                int p_149636_5_,
        +                int p_149636_6_)
        +
        +
        Overrides:
        +
        harvestBlock in class Block
        +
        +
      • +
      + + + +
        +
      • +

        isShearable

        +
        public boolean isShearable(ItemStack item,
        +                  IBlockAccess world,
        +                  int x,
        +                  int y,
        +                  int z)
        +
        Description copied from interface: IShearable
        +
        Checks if the object is currently shearable + Example: Sheep return false when they have no wool
        +
        +
        Specified by:
        +
        isShearable in interface IShearable
        +
        Parameters:
        item - The itemstack that is being used, Possible to be null
        world - The current world
        x - The X Position
        y - The Y Position
        z - The Z Position
        +
        Returns:
        If this is shearable, and onSheared should be called.
        +
      • +
      + + + +
        +
      • +

        onSheared

        +
        public java.util.ArrayList<ItemStack> onSheared(ItemStack item,
        +                                       IBlockAccess world,
        +                                       int x,
        +                                       int y,
        +                                       int z,
        +                                       int fortune)
        +
        Description copied from interface: IShearable
        +
        Performs the shear function on this object. + This is called for both client, and server. + The object should perform all actions related to being sheared, + except for dropping of the items, and removal of the block. + As those are handled by ItemShears itself. + + Returns a list of items that resulted from the shearing process. + + For entities, they should trust there internal location information + over the values passed into this function.
        +
        +
        Specified by:
        +
        onSheared in interface IShearable
        +
        Parameters:
        item - The itemstack that is being used, Possible to be null
        world - The current world
        x - The X Position
        y - The Y Position
        z - The Z Position
        fortune - The fortune level of the shears being used
        +
        Returns:
        A ArrayList containing all items from this shearing. Possible to be null.
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + -- cgit v1.2.3