Package net.glowstone.block.blocktype
Class BlockTallGrass
java.lang.Object
net.glowstone.block.itemtype.ItemType
net.glowstone.block.blocktype.BlockType
net.glowstone.block.blocktype.BlockNeedsAttached
net.glowstone.block.blocktype.BlockTallGrass
- All Implemented Interfaces:
IBlockGrowable
-
Nested Class Summary
Nested classes/interfaces inherited from class net.glowstone.block.itemtype.ItemType
ItemType.Context -
Field Summary
Fields inherited from class net.glowstone.block.blocktype.BlockType
ADJACENT, drops, placeSound, SIDES, soundGroup -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanCalled when a player attempts to place a block on an existing block of this type.booleancanGrowWithChance(GlowBlock block) Called to check if the block will effectively grow.booleancanOverride(GlowBlock block, org.bukkit.block.BlockFace face, org.bukkit.inventory.ItemStack holding) Called to check if this block can be overridden by a block place which would occur inside it.booleancanPlaceAt(GlowBlock block, org.bukkit.block.BlockFace against) @NotNull Collection<org.bukkit.inventory.ItemStack>Get the items that will be dropped by digging the block.voidgrow(GlowPlayer player, GlowBlock block) Called to grow a growable block.booleanisFertilizable(GlowBlock block) Called to check if a block can be fertilized.Methods inherited from class net.glowstone.block.blocktype.BlockNeedsAttached
canAttachTo, canPlaceAt, dropMe, getAttachedFace, onNearBlockChanged, updatePhysicsAfterEventMethods inherited from class net.glowstone.block.blocktype.BlockType
afterDestroy, afterPlace, blockDestroy, blockInteract, canTickRandomly, createBlockEntity, getCastedBlockData, getMinedDrops, getOppositeBlockFace, getPlaceAs, getPlaceSound, getPulseTickSpeed, getSoundGroup, isPulseOnce, leftClickBlock, onBlockChanged, onEntityStep, onRedstoneUpdate, placeBlock, receivePulse, requestPulse, rightClickBlock, setDrops, setPlaceSound, updateBlock, updatePhysics, warnMaterialDataMethods inherited from class net.glowstone.block.itemtype.ItemType
getContext, getMaterial, getMaterials, getMaxStackSize, rightClickAir, setMaterial, setMaxStackSize, setPlaceAs, setPlaceAs, toString
-
Constructor Details
-
BlockTallGrass
public BlockTallGrass()
-
-
Method Details
-
canPlaceAt
-
getDrops
@NotNull public @NotNull Collection<org.bukkit.inventory.ItemStack> getDrops(GlowBlock block, org.bukkit.inventory.ItemStack tool) Description copied from class:BlockTypeGet the items that will be dropped by digging the block. -
canAbsorb
public boolean canAbsorb(GlowBlock block, org.bukkit.block.BlockFace face, org.bukkit.inventory.ItemStack holding) Description copied from class:BlockTypeCalled when a player attempts to place a block on an existing block of this type. Used to determine if the placement should occur into the air adjacent to the block (normal behavior), or absorbed into the block clicked on. -
canOverride
public boolean canOverride(GlowBlock block, org.bukkit.block.BlockFace face, org.bukkit.inventory.ItemStack holding) Description copied from class:BlockTypeCalled to check if this block can be overridden by a block place which would occur inside it.- Overrides:
canOverridein classBlockType- Parameters:
block- The block being targeted by the placementface- The face on which the click occurredholding- The ItemStack the player was holding- Returns:
- Whether this block can be overridden.
-
isFertilizable
Description copied from interface:IBlockGrowableCalled to check if a block can be fertilized.- Specified by:
isFertilizablein interfaceIBlockGrowable- Parameters:
block- the targeted block to fertilize- Returns:
- True if the block can be fertilized.
-
canGrowWithChance
Description copied from interface:IBlockGrowableCalled to check if the block will effectively grow.- Specified by:
canGrowWithChancein interfaceIBlockGrowable- Parameters:
block- the targeted block to grow- Returns:
- True if the block will grow.
-
grow
Description copied from interface:IBlockGrowableCalled to grow a growable block.- Specified by:
growin interfaceIBlockGrowable- Parameters:
player- the player who triggered the growth, this can be null if the growth is natural or by plugin sourceblock- the targeted block to grow
-