EntityLivingEquipmentChange
Link to entitylivingequipmentchange
EntityLivingEquipmentChangeEvent is fired when the Equipment of a Entity changes. This also includes entities joining the World, as well as being cloned.
slot contains the affected EntityEquipmentSlot. item contains the ItemStack that is equipped now. olditem contains the ItemStack that was equipped previously.
Event Class
Link to event-class
You will need to cast the event in the function header as this class:
crafttweaker.event.EntityLivingEquipmentChangeEvent
You can, of course, also import the class before and use that name then.
Event interface extensions
Link to event-interface-extensions
EntityLivingEquipmentChangeEvent implements the following interfaces and are able to call all of their methods/getters/setters as well:
ZenGetters
Link to zengetters
The following information can be retrieved from the event:
ZenGetter | 戻り値 |
---|---|
ZenGetter newItem | 戻り値 IItemStack |
ZenGetter oldItem | 戻り値 IItemStack |
ZenGetter slot | 戻り値 IEntityEquipmentSlot |