Class BlockGrass

All Implemented Interfaces:
IBlockGrowable

public class BlockGrass extends BlockType implements IBlockGrowable
  • Constructor Details

    • BlockGrass

      public BlockGrass()
  • Method Details

    • isFertilizable

      public boolean isFertilizable(GlowBlock block)
      Description copied from interface: IBlockGrowable
      Called to check if a block can be fertilized.
      Specified by:
      isFertilizable in interface IBlockGrowable
      Parameters:
      block - the targeted block to fertilize
      Returns:
      True if the block can be fertilized.
    • canTickRandomly

      public boolean canTickRandomly()
      Description copied from class: BlockType
      Called to check if this block can perform random tick updates.
      Overrides:
      canTickRandomly in class BlockType
      Returns:
      Whether this block updates on tick.
    • canGrowWithChance

      public boolean canGrowWithChance(GlowBlock block)
      Description copied from interface: IBlockGrowable
      Called to check if the block will effectively grow.
      Specified by:
      canGrowWithChance in interface IBlockGrowable
      Parameters:
      block - the targeted block to grow
      Returns:
      True if the block will grow.
    • grow

      public void grow(GlowPlayer player, GlowBlock block)
      Description copied from interface: IBlockGrowable
      Called to grow a growable block.
      Specified by:
      grow in interface IBlockGrowable
      Parameters:
      player - the player who triggered the growth, this can be null if the growth is natural or by plugin source
      block - the targeted block to grow
    • updateBlock

      public void updateBlock(GlowBlock block)
      Description copied from class: BlockType
      Called when this block needs to be updated.
      Overrides:
      updateBlock in class BlockType
      Parameters:
      block - The block that needs an update