Class GenericGameEvent

All Implemented Interfaces:
Cancellable

public class GenericGameEvent extends WorldEvent implements Cancellable
Represents a generic Mojang game event. Specific Bukkit events should be used where possible, this event is mainly used internally by Sculk sensors.
  • Constructor Details

    • GenericGameEvent

      public GenericGameEvent(@NotNull GameEvent event, @NotNull Location location, @Nullable Entity entity, int radius, boolean isAsync)
  • Method Details

    • getEvent

      @NotNull public GameEvent getEvent()
      Get the underlying event.
      Returns:
      the event
    • getLocation

      @NotNull public Location getLocation()
      Get the location where the event occurred.
      Returns:
      event location
    • getEntity

      @Nullable public Entity getEntity()
      Get the entity which triggered this event, if present.
      Returns:
      triggering entity or null
    • getRadius

      public int getRadius()
      Get the block radius to which this event will be broadcast.
      Returns:
      broadcast radius
    • setRadius

      public void setRadius(int radius)
      Set the radius to which the event should be broadcast.
      Parameters:
      radius - radius, must be greater than or equal to 0
    • setCancelled

      public void setCancelled(boolean cancel)
      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:
      cancel - true if you wish to cancel this event
    • 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
    • getHandlers

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

      @NotNull public static HandlerList getHandlerList()