Package org.bukkit.event.block
Class BlockMultiPlaceEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.block.BlockEvent
org.bukkit.event.block.BlockPlaceEvent
org.bukkit.event.block.BlockMultiPlaceEvent
- All Implemented Interfaces:
Cancellable
public class BlockMultiPlaceEvent extends BlockPlaceEvent
Fired when a single block placement action of a player triggers the
creation of multiple blocks(e.g. placing a bed block). The block returned
by
BlockPlaceEvent.getBlockPlaced()
and its related methods is the block where
the placed block would exist if the placement only affected a single
block.-
Nested Class Summary
-
Field Summary
Fields inherited from class org.bukkit.event.block.BlockPlaceEvent
canBuild, cancel, hand, itemInHand, placedAgainst, player, replacedBlockState
-
Constructor Summary
Constructors Constructor Description BlockMultiPlaceEvent(List<BlockState> states, Block clicked, ItemStack itemInHand, Player thePlayer, boolean canBuild)
-
Method Summary
Modifier and Type Method Description List<BlockState>
getReplacedBlockStates()
Gets a list of blockstates for all blocks which were replaced by the placement of the new blocks.Methods inherited from class org.bukkit.event.block.BlockPlaceEvent
canBuild, getBlockAgainst, getBlockPlaced, getBlockReplacedState, getHand, getHandlerList, getHandlers, getItemInHand, getPlayer, isCancelled, setBuild, setCancelled
-
Constructor Details
-
Method Details
-
getReplacedBlockStates
Gets a list of blockstates for all blocks which were replaced by the placement of the new blocks. Most of these blocks will just have a Material type of AIR.- Returns:
- immutable list of replaced BlockStates
-