mirror of
https://github.com/SunNetservers/MiniGames.git
synced 2025-04-03 10:16:26 +02:00
37 lines
1.2 KiB
Java
37 lines
1.2 KiB
Java
package net.knarcraft.minigames.command;
|
|
|
|
import net.knarcraft.minigames.MiniGames;
|
|
import net.knarcraft.minigames.arena.dropper.DropperArena;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandExecutor;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
/**
|
|
* The method used for removing an existing arena
|
|
*/
|
|
public class RemoveArenaCommand implements CommandExecutor {
|
|
|
|
@Override
|
|
public boolean onCommand(@NotNull CommandSender commandSender, @NotNull Command command, @NotNull String s,
|
|
@NotNull String[] arguments) {
|
|
// Abort if no name was specified
|
|
if (arguments.length < 1) {
|
|
return false;
|
|
}
|
|
|
|
// Get the specified arena
|
|
DropperArena targetArena = MiniGames.getInstance().getDropperArenaHandler().getArena(arguments[0]);
|
|
if (targetArena == null) {
|
|
commandSender.sendMessage("Unable to find the specified arena");
|
|
return false;
|
|
}
|
|
|
|
// Remove the arena
|
|
MiniGames.getInstance().getDropperArenaHandler().removeArena(targetArena);
|
|
commandSender.sendMessage("The specified arena has been successfully removed");
|
|
return true;
|
|
}
|
|
|
|
}
|