package org.bukkit.event.entity; import org.bukkit.entity.AreaEffectCloud; import org.bukkit.entity.LingeringPotion; import org.bukkit.entity.ThrownPotion; import org.bukkit.event.Cancellable; import org.bukkit.event.HandlerList; /** * Called when a splash potion hits an area */ public class LingeringPotionSplashEvent extends ProjectileHitEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); private boolean cancelled; private final AreaEffectCloud entity; public LingeringPotionSplashEvent(final ThrownPotion potion, final AreaEffectCloud entity) { super(potion); this.entity = entity; } @Override public LingeringPotion getEntity() { return (LingeringPotion) super.getEntity(); } /** * Gets the AreaEffectCloud spawned * * @return The spawned AreaEffectCloud */ public AreaEffectCloud getAreaEffectCloud() { return entity; } public boolean isCancelled() { return cancelled; } public void setCancelled(boolean cancel) { cancelled = cancel; } @Override public HandlerList getHandlers() { return handlers; } public static HandlerList getHandlerList() { return handlers; } }