Package net.minecraftforge.event.level
Class BlockEvent.EntityMultiPlaceEvent
java.lang.Object
net.minecraftforge.eventbus.api.Event
net.minecraftforge.event.level.BlockEvent
net.minecraftforge.event.level.BlockEvent.EntityPlaceEvent
net.minecraftforge.event.level.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.level.BlockEvent
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
(@NotNull List<BlockSnapshot> blockSnapshots, @NotNull BlockState placedAgainst, @Nullable 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.level.BlockEvent.EntityPlaceEvent
getBlockSnapshot, getEntity, getPlacedAgainst, getPlacedBlock
Methods inherited from class net.minecraftforge.event.level.BlockEvent
getLevel, getPos, getState
Methods inherited from class net.minecraftforge.eventbus.api.Event
getListenerList, getPhase, getResult, hasResult, isCancelable, isCanceled, setCanceled, setPhase, setResult
-
Field Details
-
blockSnapshots
-
-
Constructor Details
-
EntityMultiPlaceEvent
public EntityMultiPlaceEvent(@NotNull @NotNull List<BlockSnapshot> blockSnapshots, @NotNull @NotNull BlockState placedAgainst, @Nullable @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
-