SPIGOT-3917: Add EntityDropItemEvent

By: Articdive <articdive@gmail.com>
This commit is contained in:
Bukkit/Spigot 2018-07-30 11:38:05 +02:00
parent bd2074a93d
commit cb8ec6543b

View file

@ -0,0 +1,49 @@
package org.bukkit.event.entity;
import org.bukkit.entity.Entity;
import org.bukkit.entity.Item;
import org.bukkit.event.Cancellable;
import org.bukkit.event.HandlerList;
/**
* Thrown when an entity creates an item drop.
*/
public class EntityDropItemEvent extends EntityEvent implements Cancellable {
private static final HandlerList handlers = new HandlerList();
private final Item drop;
private boolean cancel = false;
public EntityDropItemEvent(final Entity entity, final Item drop) {
super(entity);
this.drop = drop;
}
/**
* Gets the Item created by the entity
*
* @return Item created by the entity
*/
public Item getItemDrop() {
return drop;
}
@Override
public boolean isCancelled() {
return cancel;
}
@Override
public void setCancelled(boolean cancel) {
this.cancel = cancel;
}
@Override
public HandlerList getHandlers() {
return handlers;
}
public static HandlerList getHandlerList() {
return handlers;
}
}