Class LivingExperienceDropEvent
java.lang.Object
net.minecraftforge.eventbus.api.Event
net.minecraftforge.event.entity.EntityEvent
net.minecraftforge.event.entity.living.LivingEvent
net.minecraftforge.event.entity.living.LivingExperienceDropEvent
Event for when an entity drops experience on its death, can be used to change
the amount of experience points dropped or completely prevent dropping of experience
by canceling the event.
-
Nested Class Summary
Nested classes/interfaces inherited from class net.minecraftforge.event.entity.living.LivingEvent
LivingEvent.LivingJumpEvent, LivingEvent.LivingTickEvent, LivingEvent.LivingVisibilityEvent
Nested classes/interfaces inherited from class net.minecraftforge.event.entity.EntityEvent
EntityEvent.EnteringSection, EntityEvent.EntityConstructing
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
ConstructorDescriptionLivingExperienceDropEvent
(LivingEntity entity, @Nullable Player attackingPlayer, int originalExperience) -
Method Summary
Modifier and TypeMethodDescription@Nullable Player
int
int
void
setDroppedExperience
(int droppedExperience) Methods inherited from class net.minecraftforge.event.entity.living.LivingEvent
getEntity
Methods inherited from class net.minecraftforge.eventbus.api.Event
getListenerList, getPhase, getResult, hasResult, isCancelable, isCanceled, setCanceled, setPhase, setResult
-
Field Details
-
attackingPlayer
-
originalExperiencePoints
private final int originalExperiencePoints -
droppedExperiencePoints
private int droppedExperiencePoints
-
-
Constructor Details
-
LivingExperienceDropEvent
public LivingExperienceDropEvent(LivingEntity entity, @Nullable @Nullable Player attackingPlayer, int originalExperience)
-
-
Method Details
-
getDroppedExperience
public int getDroppedExperience() -
setDroppedExperience
public void setDroppedExperience(int droppedExperience) -
getAttackingPlayer
- Returns:
- The player that last attacked the entity and thus caused the experience. This can be null, in case the player has since logged out.
-
getOriginalExperience
public int getOriginalExperience()
-