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 Detail

      • EntityAirChangeEvent

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

      • 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
      • getHandlerList

        @NotNull
        public static HandlerList getHandlerList()