Class EntityAirChangeEvent

All Implemented Interfaces:
Cancellable

public class EntityAirChangeEvent extends EntityEvent implements Cancellable
Called when the amount of air an entity has remaining changes.
  • Constructor Details

    • EntityAirChangeEvent

      public EntityAirChangeEvent(@NotNull Entity what, int amount)
  • Method Details

    • getAmount

      public int getAmount()
      Gets the amount of air the entity has left (measured in ticks).
      Returns:
      amount of air remaining
    • setAmount

      public void setAmount(int amount)
      Sets the amount of air remaining for the entity (measured in ticks.
      Parameters:
      amount - amount of air remaining
    • isCancelled

      public boolean isCancelled()
      Description copied from interface: Cancellable
      Gets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins
      Specified by:
      isCancelled in interface Cancellable
      Returns:
      true if this event is cancelled
    • setCancelled

      public void setCancelled(boolean cancelled)
      Description copied from interface: Cancellable
      Sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.
      Specified by:
      setCancelled in interface Cancellable
      Parameters:
      cancelled - true if you wish to cancel this event
    • getHandlers

      @NotNull public HandlerList getHandlers()
      Specified by:
      getHandlers in class Event
    • getHandlerList

      @NotNull public static HandlerList getHandlerList()