mirror of
https://github.com/SunNetservers/MiniGames.git
synced 2025-04-03 10:16:26 +02:00
21 lines
678 B
Java
21 lines
678 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 GroupSwapCommand implements CommandExecutor {
|
|
|
|
@Override
|
|
public boolean onCommand(@NotNull CommandSender commandSender, @NotNull Command command, @NotNull String s,
|
|
@NotNull String[] arguments) {
|
|
// TODO: Make sure the two arenas exist
|
|
// TODO: Make sure the two arenas belong to the same group
|
|
// TODO: Swap the order of the two groups
|
|
// TODO: Announce success
|
|
return false;
|
|
}
|
|
|
|
}
|