Class PlayerChangeHeldSlotEvent

java.lang.Object
net.minestom.server.event.player.PlayerChangeHeldSlotEvent
All Implemented Interfaces:
Event, CancellableEvent, EntityEvent, EntityInstanceEvent, InstanceEvent, PlayerEvent, PlayerInstanceEvent

public class PlayerChangeHeldSlotEvent extends Object implements PlayerInstanceEvent, CancellableEvent
Called when a player change his held slot (by pressing 1-9 keys).
  • Constructor Details

    • PlayerChangeHeldSlotEvent

      public PlayerChangeHeldSlotEvent(@NotNull @NotNull Player player, byte slot)
  • Method Details

    • getSlot

      public byte getSlot()
      Gets the slot which the player will held.
      Returns:
      the held slot
    • setSlot

      public void setSlot(byte slot)
      Changes the final held slot of the player.
      Parameters:
      slot - the new held slot
      Throws:
      IllegalArgumentException - if slot is not between 0 and 8
    • isCancelled

      public boolean isCancelled()
      Description copied from interface: CancellableEvent
      Gets if the Event should be cancelled or not.
      Specified by:
      isCancelled in interface CancellableEvent
      Returns:
      true if the event should be cancelled
    • setCancelled

      public void setCancelled(boolean cancel)
      Description copied from interface: CancellableEvent
      Marks the Event as cancelled or not.
      Specified by:
      setCancelled in interface CancellableEvent
      Parameters:
      cancel - true if the event should be cancelled, false otherwise
    • getPlayer

      @NotNull public @NotNull Player getPlayer()
      Description copied from interface: PlayerEvent
      Gets the player.
      Specified by:
      getPlayer in interface PlayerEvent
      Returns:
      the player