Class LivingDropsEvent
- java.lang.Object
-
- net.minecraftforge.eventbus.api.Event
-
- net.minecraftforge.event.entity.EntityEvent
-
- net.minecraftforge.event.entity.living.LivingEvent
-
- net.minecraftforge.event.entity.living.LivingDropsEvent
-
public class LivingDropsEvent extends LivingEvent
LivingDropsEvent is fired when an Entity's death causes dropped items to appear.
This event is fired whenever an Entity dies and drops items inEntityLivingBase#onDeath(DamageSource)
.
This event is fired via theForgeHooks#onLivingDrops(EntityLivingBase, DamageSource, ArrayList, int, boolean)
.
source
contains the DamageSource that caused the drop to occur.
drops
contains the ArrayList of EntityItems that will be dropped.
lootingLevel
contains the amount of loot that will be dropped.
recentlyHit
determines whether the Entity doing the drop has recently been damaged.
This event isCancelable
.
If this event is canceled, the Entity does not drop anything.
This event does not have a result.Event.HasResult
This event is fired on theMinecraftForge.EVENT_BUS
.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class net.minecraftforge.event.entity.living.LivingEvent
LivingEvent.LivingJumpEvent, LivingEvent.LivingUpdateEvent, LivingEvent.LivingVisibilityEvent
-
Nested classes/interfaces inherited from class net.minecraftforge.event.entity.EntityEvent
EntityEvent.CanUpdate, EntityEvent.EnteringChunk, EntityEvent.EntityConstructing, EntityEvent.Size
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Collection<ItemEntity>
drops
private int
lootingLevel
private boolean
recentlyHit
private DamageSource
source
-
Constructor Summary
Constructors Constructor Description LivingDropsEvent(LivingEntity entity, DamageSource source, java.util.Collection<ItemEntity> drops, int lootingLevel, boolean recentlyHit)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection<ItemEntity>
getDrops()
int
getLootingLevel()
DamageSource
getSource()
boolean
isRecentlyHit()
-
Methods inherited from class net.minecraftforge.event.entity.living.LivingEvent
getEntityLiving
-
Methods inherited from class net.minecraftforge.event.entity.EntityEvent
getEntity
-
-
-
-
Field Detail
-
source
private final DamageSource source
-
drops
private final java.util.Collection<ItemEntity> drops
-
lootingLevel
private final int lootingLevel
-
recentlyHit
private final boolean recentlyHit
-
-
Constructor Detail
-
LivingDropsEvent
public LivingDropsEvent(LivingEntity entity, DamageSource source, java.util.Collection<ItemEntity> drops, int lootingLevel, boolean recentlyHit)
-
-
Method Detail
-
getSource
public DamageSource getSource()
-
getDrops
public java.util.Collection<ItemEntity> getDrops()
-
getLootingLevel
public int getLootingLevel()
-
isRecentlyHit
public boolean isRecentlyHit()
-
-