mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-05 16:49:39 +00:00
#537: Add EntitySpellCastEvent for spellcaster illager
This commit is contained in:
parent
05b2dc6132
commit
61303b478c
1 changed files with 62 additions and 0 deletions
|
@ -0,0 +1,62 @@
|
|||
package org.bukkit.event.entity;
|
||||
|
||||
import org.bukkit.entity.Spellcaster;
|
||||
import org.bukkit.event.Cancellable;
|
||||
import org.bukkit.event.HandlerList;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* Called when a {@link Spellcaster} casts a spell.
|
||||
*/
|
||||
public class EntitySpellCastEvent extends EntityEvent implements Cancellable {
|
||||
|
||||
private static final HandlerList handlers = new HandlerList();
|
||||
//
|
||||
private boolean cancelled = false;
|
||||
private final Spellcaster.Spell spell;
|
||||
|
||||
public EntitySpellCastEvent(@NotNull Spellcaster what, @NotNull Spellcaster.Spell spell) {
|
||||
super(what);
|
||||
this.spell = spell;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NotNull
|
||||
public Spellcaster getEntity() {
|
||||
return (Spellcaster) entity;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the spell to be cast in this event.
|
||||
*
|
||||
* This is a convenience method equivalent to
|
||||
* {@link Spellcaster#getSpell()}.
|
||||
*
|
||||
* @return the spell to cast
|
||||
*/
|
||||
@NotNull
|
||||
public Spellcaster.Spell getSpell() {
|
||||
return spell;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCancelled(boolean cancelled) {
|
||||
this.cancelled = cancelled;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isCancelled() {
|
||||
return cancelled;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NotNull
|
||||
public HandlerList getHandlers() {
|
||||
return handlers;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
public static HandlerList getHandlerList() {
|
||||
return handlers;
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue