Package net.glowstone.block.blocktype
Class BlockSapling
java.lang.Object
net.glowstone.block.itemtype.ItemType
net.glowstone.block.blocktype.BlockType
net.glowstone.block.blocktype.BlockNeedsAttached
net.glowstone.block.blocktype.BlockSapling
- 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
-
Method Summary
Modifier and TypeMethodDescriptionboolean
canGrowWithChance
(GlowBlock block) Called to check if the block will effectively grow.boolean
canPlaceAt
(GlowPlayer player, GlowBlock block, org.bukkit.block.BlockFace against) Check whether the block can be placed at the given location.boolean
Called to check if this block can perform random tick updates.@NotNull Collection<org.bukkit.inventory.ItemStack>
Get the items that will be dropped by digging the block.void
grow
(GlowPlayer player, GlowBlock block) Called to grow a growable block.boolean
isFertilizable
(GlowBlock block) Called to check if a block can be fertilized.void
updateBlock
(GlowBlock block) Called when this block needs to be updated.Methods inherited from class net.glowstone.block.blocktype.BlockNeedsAttached
canAttachTo, dropMe, getAttachedFace, onNearBlockChanged, updatePhysicsAfterEvent
Methods inherited from class net.glowstone.block.blocktype.BlockType
afterDestroy, afterPlace, blockDestroy, blockInteract, canAbsorb, canOverride, createBlockEntity, getCastedBlockData, getMinedDrops, getOppositeBlockFace, getPlaceAs, getPlaceSound, getPulseTickSpeed, getSoundGroup, isPulseOnce, leftClickBlock, onBlockChanged, onEntityStep, onRedstoneUpdate, placeBlock, receivePulse, requestPulse, rightClickBlock, setDrops, setPlaceSound, updatePhysics, warnMaterialData
Methods inherited from class net.glowstone.block.itemtype.ItemType
getContext, getMaterial, getMaterials, getMaxStackSize, rightClickAir, setMaterial, setMaxStackSize, setPlaceAs, setPlaceAs, toString
-
Constructor Details
-
BlockSapling
public BlockSapling()
-
-
Method Details
-
canPlaceAt
Description copied from class:BlockType
Check whether the block can be placed at the given location.- Overrides:
canPlaceAt
in 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.
-
isFertilizable
Description copied from interface:IBlockGrowable
Called to check if a block can be fertilized.- Specified by:
isFertilizable
in interfaceIBlockGrowable
- 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 classBlockType
- Returns:
- Whether this block updates on tick.
-
canGrowWithChance
Description copied from interface:IBlockGrowable
Called to check if the block will effectively grow.- Specified by:
canGrowWithChance
in interfaceIBlockGrowable
- Parameters:
block
- the targeted block to grow- Returns:
- True if the block will grow.
-
grow
Description copied from interface:IBlockGrowable
Called to grow a growable block.- Specified by:
grow
in 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
-
getDrops
@NotNull public @NotNull Collection<org.bukkit.inventory.ItemStack> getDrops(GlowBlock block, org.bukkit.inventory.ItemStack tool) Description copied from class:BlockType
Get the items that will be dropped by digging the block. -
updateBlock
Description copied from class:BlockType
Called when this block needs to be updated.- Overrides:
updateBlock
in classBlockType
- Parameters:
block
- The block that needs an update
-