Package net.minecraftforge.event.world
Class BlockEvent.EntityMultiPlaceEvent
java.lang.Object
net.minecraftforge.eventbus.api.Event
net.minecraftforge.event.world.BlockEvent
net.minecraftforge.event.world.BlockEvent.EntityPlaceEvent
net.minecraftforge.event.world.BlockEvent.EntityMultiPlaceEvent
- Enclosing class:
- BlockEvent
Fired when a single block placement triggers the
creation of multiple blocks(e.g. placing a bed block). The block returned
by
BlockEvent.state
and its related methods is the block where
the placed block would exist if the placement only affected a single
block.-
Nested Class Summary
Nested classes/interfaces inherited from class net.minecraftforge.event.world.BlockEvent
BlockEvent.BlockToolInteractEvent, BlockEvent.BlockToolModificationEvent, BlockEvent.BreakEvent, BlockEvent.CreateFluidSourceEvent, BlockEvent.CropGrowEvent, BlockEvent.EntityMultiPlaceEvent, BlockEvent.EntityPlaceEvent, BlockEvent.FarmlandTrampleEvent, BlockEvent.FluidPlaceBlockEvent, BlockEvent.NeighborNotifyEvent, BlockEvent.PortalSpawnEvent
Nested classes/interfaces inherited from class net.minecraftforge.eventbus.api.Event
net.minecraftforge.eventbus.api.Event.HasResult, net.minecraftforge.eventbus.api.Event.Result
-
Field Summary
-
Constructor Summary
ConstructorDescriptionEntityMultiPlaceEvent
(List<BlockSnapshot> blockSnapshots, BlockState placedAgainst, Entity entity) -
Method Summary
Modifier and TypeMethodDescriptionGets a list of BlockSnapshots for all blocks which were replaced by the placement of the new blocks.Methods inherited from class net.minecraftforge.event.world.BlockEvent.EntityPlaceEvent
getBlockSnapshot, getEntity, getPlacedAgainst, getPlacedBlock
Methods inherited from class net.minecraftforge.event.world.BlockEvent
getPos, getState, getWorld
Methods inherited from class net.minecraftforge.eventbus.api.Event
getListenerList, getParentListenerList, getPhase, getResult, hasResult, isCancelable, isCanceled, setCanceled, setPhase, setResult, setup
-
Field Details
-
blockSnapshots
-
-
Constructor Details
-
EntityMultiPlaceEvent
public EntityMultiPlaceEvent(@Nonnull List<BlockSnapshot> blockSnapshots, @Nonnull BlockState placedAgainst, @Nullable Entity entity)
-
-
Method Details
-
getReplacedBlockSnapshots
Gets a list of BlockSnapshots for all blocks which were replaced by the placement of the new blocks. Most of these blocks will just be of type AIR.- Returns:
- immutable list of replaced BlockSnapshots
-