Minestom/src/main/java/net/minestom/server/event/player/PlayerCommandEvent.java

51 lines
1.1 KiB
Java

package net.minestom.server.event.player;
import net.minestom.server.entity.Player;
import net.minestom.server.event.CancellableEvent;
import net.minestom.server.event.PlayerEvent;
import org.jetbrains.annotations.NotNull;
/**
* Called every time a player send a message starting by '/'.
*/
public class PlayerCommandEvent extends PlayerEvent implements CancellableEvent {
private String command;
private boolean cancelled;
public PlayerCommandEvent(@NotNull Player player, @NotNull String command) {
super(player);
this.command = command;
}
/**
* Gets the command used (command name + arguments).
*
* @return the command that the player wants to execute
*/
@NotNull
public String getCommand() {
return command;
}
/**
* Changes the command to execute.
*
* @param command the new command
*/
public void setCommand(@NotNull String command) {
this.command = command;
}
@Override
public boolean isCancelled() {
return cancelled;
}
@Override
public void setCancelled(boolean cancel) {
this.cancelled = cancel;
}
}