Class PlayerCommandEvent

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

public class PlayerCommandEvent extends Object implements PlayerInstanceEvent, CancellableEvent
Called every time a player send a message starting by '/'.
  • Constructor Details

    • PlayerCommandEvent

      public PlayerCommandEvent(@NotNull @NotNull Player player, @NotNull @NotNull String command)
  • Method Details

    • getCommand

      @NotNull public @NotNull String getCommand()
      Gets the command used (command name + arguments).
      Returns:
      the command that the player wants to execute
    • setCommand

      public void setCommand(@NotNull @NotNull String command)
      Changes the command to execute.
      Parameters:
      command - the new command
    • 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