Class BlockEvent.NeighborNotifyEvent
java.lang.Object
net.neoforged.bus.api.Event
net.neoforged.neoforge.event.level.BlockEvent
net.neoforged.neoforge.event.level.BlockEvent.NeighborNotifyEvent
- All Implemented Interfaces:
- net.neoforged.bus.api.ICancellableEvent
- Enclosing class:
- BlockEvent
public static class BlockEvent.NeighborNotifyEvent
extends BlockEvent
implements net.neoforged.bus.api.ICancellableEvent
Fired when a physics update occurs on a block. This event acts as
 a way for mods to detect physics updates, in the same way a BUD switch
 does. This event is only called on the server.
- 
Nested Class SummaryNested classes/interfaces inherited from class net.neoforged.neoforge.event.level.BlockEventBlockEvent.BlockToolModificationEvent, BlockEvent.BreakEvent, BlockEvent.EntityMultiPlaceEvent, BlockEvent.EntityPlaceEvent, BlockEvent.FarmlandTrampleEvent, BlockEvent.FluidPlaceBlockEvent, BlockEvent.NeighborNotifyEvent, BlockEvent.PortalSpawnEvent
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final boolean
- 
Constructor SummaryConstructorsConstructorDescriptionNeighborNotifyEvent(Level level, BlockPos pos, BlockState state, EnumSet<Direction> notifiedSides, boolean forceRedstoneUpdate) 
- 
Method SummaryModifier and TypeMethodDescriptionbooleanGet if redstone update was forced during setBlock call (0x16 to flags)Gets a list of directions from the base block that updates will occur upon.Methods inherited from class net.neoforged.neoforge.event.level.BlockEventgetLevel, getPos, getStateMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.neoforged.bus.api.ICancellableEventisCanceled, setCanceled
- 
Field Details- 
notifiedSides
- 
forceRedstoneUpdateprivate final boolean forceRedstoneUpdate
 
- 
- 
Constructor Details- 
NeighborNotifyEventpublic NeighborNotifyEvent(Level level, BlockPos pos, BlockState state, EnumSet<Direction> notifiedSides, boolean forceRedstoneUpdate) 
 
- 
- 
Method Details- 
getNotifiedSidesGets a list of directions from the base block that updates will occur upon.- Returns:
- list of notified directions
 
- 
getForceRedstoneUpdatepublic boolean getForceRedstoneUpdate()Get if redstone update was forced during setBlock call (0x16 to flags)- Returns:
- if the flag was set
 
 
-