org.bukkit.event.player.PlayerUnleashEntityEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chest-server Show documentation
Show all versions of chest-server Show documentation
A spigot fork to kotlin structure and news.
The newest version!
package org.bukkit.event.player;
import org.bukkit.entity.Entity;
import org.bukkit.entity.Player;
import org.bukkit.event.Cancellable;
import org.bukkit.event.entity.EntityUnleashEvent;
/**
* Called prior to an entity being unleashed due to a player's action.
*/
public class PlayerUnleashEntityEvent extends EntityUnleashEvent implements Cancellable {
private final Player player;
private boolean cancelled = false;
public PlayerUnleashEntityEvent(Entity entity, Player player) {
super(entity, UnleashReason.PLAYER_UNLEASH);
this.player = player;
}
/**
* Returns the player who is unleashing the entity.
*
* @return The player
*/
public Player getPlayer() {
return player;
}
public boolean isCancelled() {
return cancelled;
}
public void setCancelled(boolean cancel) {
this.cancelled = cancel;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy