Class PlayerGameModeChangeEvent

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

public class PlayerGameModeChangeEvent extends Object implements PlayerInstanceEvent, CancellableEvent
Called when the gamemode of a player is being modified.
  • Constructor Details

    • PlayerGameModeChangeEvent

      public PlayerGameModeChangeEvent(@NotNull @NotNull Player player, @NotNull @NotNull GameMode newGameMode)
  • Method Details

    • getNewGameMode

      @NotNull public @NotNull GameMode getNewGameMode()
      Gets the target gamemode.
      Returns:
      the target gamemode
    • setNewGameMode

      public void setNewGameMode(@NotNull @NotNull GameMode newGameMode)
      Changes the target gamemode.
      Parameters:
      newGameMode - the new target gamemode
    • 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