Package net.glowstone.block.blocktype
Class BlockGrass
java.lang.Object
net.glowstone.block.itemtype.ItemType
net.glowstone.block.blocktype.BlockType
net.glowstone.block.blocktype.BlockGrass
- 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 TypeMethodDescriptionbooleancanGrowWithChance(GlowBlock block) Called to check if the block will effectively grow.booleanCalled to check if this block can perform random tick updates.voidgrow(GlowPlayer player, GlowBlock block) Called to grow a growable block.booleanisFertilizable(GlowBlock block) Called to check if a block can be fertilized.voidupdateBlock(GlowBlock block) Called when this block needs to be updated.Methods inherited from class net.glowstone.block.blocktype.BlockType
afterDestroy, afterPlace, blockDestroy, blockInteract, canAbsorb, canOverride, canPlaceAt, createBlockEntity, getCastedBlockData, getDrops, getMinedDrops, getOppositeBlockFace, getPlaceAs, getPlaceSound, getPulseTickSpeed, getSoundGroup, isPulseOnce, leftClickBlock, onBlockChanged, onEntityStep, onNearBlockChanged, onRedstoneUpdate, placeBlock, receivePulse, requestPulse, rightClickBlock, setDrops, setPlaceSound, updatePhysics, updatePhysicsAfterEvent, warnMaterialDataMethods inherited from class net.glowstone.block.itemtype.ItemType
getContext, getMaterial, getMaterials, getMaxStackSize, rightClickAir, setMaterial, setMaxStackSize, setPlaceAs, setPlaceAs, toString
-
Constructor Details
-
BlockGrass
public BlockGrass()
-
-
Method Details
-
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.
-
canTickRandomly
public boolean canTickRandomly()Description copied from class:BlockTypeCalled to check if this block can perform random tick updates.- Overrides:
canTickRandomlyin classBlockType- Returns:
- Whether this block updates on tick.
-
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
-
updateBlock
Description copied from class:BlockTypeCalled when this block needs to be updated.- Overrides:
updateBlockin classBlockType- Parameters:
block- The block that needs an update
-