Class LivingEquipmentChangeEvent
java.lang.Object
net.minecraftforge.eventbus.api.Event
net.minecraftforge.event.entity.EntityEvent
net.minecraftforge.event.entity.living.LivingEvent
net.minecraftforge.event.entity.living.LivingEquipmentChangeEvent
LivingEquipmentChangeEvent is fired when the Equipment of a Entity changes. This event is fired whenever changes in Equipment are detected in
LivingEntity.tick(). This also includes entities joining the World, as well as being cloned.
This event is fired on server-side only.
slot contains the affected EquipmentSlot. from contains the ItemStack that was equipped previously. to contains the ItemStack that is equipped now. This event is not
Cancelable. This event does not have a result.
Event.HasResult This event is fired on the
MinecraftForge.EVENT_BUS.- 
Nested Class SummaryNested classes/interfaces inherited from class net.minecraftforge.event.entity.living.LivingEventLivingEvent.LivingJumpEvent, LivingEvent.LivingTickEvent, LivingEvent.LivingVisibilityEventNested classes/interfaces inherited from class net.minecraftforge.event.entity.EntityEventEntityEvent.EnteringSection, EntityEvent.EntityConstructingNested classes/interfaces inherited from class net.minecraftforge.eventbus.api.Eventnet.minecraftforge.eventbus.api.Event.HasResult, net.minecraftforge.eventbus.api.Event.Result
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionLivingEquipmentChangeEvent(LivingEntity entity, EquipmentSlot slot, @NotNull ItemStack from, @NotNull ItemStack to) 
- 
Method SummaryMethods inherited from class net.minecraftforge.event.entity.living.LivingEventgetEntityMethods inherited from class net.minecraftforge.eventbus.api.EventgetListenerList, getPhase, getResult, hasResult, isCancelable, isCanceled, setCanceled, setPhase, setResult
- 
Field Details- 
slot
- 
from
- 
to
 
- 
- 
Constructor Details- 
LivingEquipmentChangeEventpublic LivingEquipmentChangeEvent(LivingEntity entity, EquipmentSlot slot, @NotNull @NotNull ItemStack from, @NotNull @NotNull ItemStack to) 
 
- 
- 
Method Details- 
getSlot
- 
getFrom
- 
getTo
 
-