mirror of
https://github.com/SunNetservers/MiniGames.git
synced 2025-04-03 10:16:26 +02:00
Adds commands and permissions to plugin.yml Uses the Spigot API instead of the Paper API Reduces the Java version to 16, just in case. Adds a lot of empty classes to show the intended plugin structure.
19 lines
597 B
Java
19 lines
597 B
Java
package net.knarcraft.dropper.command;
|
|
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandExecutor;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class RemoveArenaCommand implements CommandExecutor {
|
|
|
|
@Override
|
|
public boolean onCommand(@NotNull CommandSender commandSender, @NotNull Command command, @NotNull String s,
|
|
@NotNull String[] strings) {
|
|
//TODO: Implement command behavior
|
|
//TODO: Make sure to kick players if the arena is currently in use
|
|
return false;
|
|
}
|
|
|
|
}
|