Package net.glowstone.block.blocktype
Class BlockDoublePlant
java.lang.Object
net.glowstone.block.itemtype.ItemType
net.glowstone.block.blocktype.BlockType
net.glowstone.block.blocktype.BlockNeedsAttached
net.glowstone.block.blocktype.BlockDoublePlant
- 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 TypeMethodDescriptionvoidafterPlace(GlowPlayer player, GlowBlock block, org.bukkit.inventory.ItemStack holding, GlowBlockState oldState) Called after a block has been placed by a player.voidblockDestroy(GlowPlayer player, GlowBlock block, org.bukkit.block.BlockFace face) Called when a player attempts to destroy a block.booleanCalled 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.booleancanPlaceAt(GlowPlayer player, GlowBlock block, org.bukkit.block.BlockFace against) Check whether the block can be placed at the given location.@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, dropMe, getAttachedFace, onNearBlockChanged, updatePhysicsAfterEventMethods inherited from class net.glowstone.block.blocktype.BlockType
afterDestroy, blockInteract, canOverride, 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
-
BlockDoublePlant
public BlockDoublePlant()
-
-
Method Details
-
canPlaceAt
Description copied from class:BlockTypeCheck whether the block can be placed at the given location.- Overrides:
canPlaceAtin classBlockNeedsAttached- Parameters:
player- The player who placed the block.block- The location the block is being placed at.against- The face the block is being placed against.- Returns:
- Whether the placement is valid.
-
afterPlace
public void afterPlace(GlowPlayer player, GlowBlock block, org.bukkit.inventory.ItemStack holding, GlowBlockState oldState) Description copied from class:BlockTypeCalled after a block has been placed by a player.- Overrides:
afterPlacein classBlockType- Parameters:
player- the player who placed the blockblock- the block that was placedholding- the the ItemStack that was being heldoldState- The old block state before the block was placed.
-
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. -
blockDestroy
Description copied from class:BlockTypeCalled when a player attempts to destroy a block.- Overrides:
blockDestroyin classBlockType- Parameters:
player- The player interactingblock- The block the player destroyedface- The block face
-
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
-
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.
-