mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 12:23:59 +00:00
![montlikadani](/assets/img/avatar_default.png)
When the user entered a word to delete the jail, deleted it, but removed anything because no jail existed.
42 lines
1.3 KiB
Java
42 lines
1.3 KiB
Java
package com.earth2me.essentials.commands;
|
|
|
|
import com.earth2me.essentials.CommandSource;
|
|
import org.bukkit.Server;
|
|
import java.util.ArrayList;
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
import static com.earth2me.essentials.I18n.tl;
|
|
|
|
|
|
public class Commanddeljail extends EssentialsCommand {
|
|
public Commanddeljail() {
|
|
super("deljail");
|
|
}
|
|
|
|
@Override
|
|
protected void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception {
|
|
if (args.length < 1) {
|
|
throw new NotEnoughArgumentsException();
|
|
}
|
|
|
|
if (ess.getJails().getJail(args[0]) == null) {
|
|
throw new Exception(tl("jailNotExist"));
|
|
}
|
|
|
|
ess.getJails().removeJail(args[0]);
|
|
sender.sendMessage(tl("deleteJail", args[0]));
|
|
}
|
|
|
|
@Override
|
|
protected List<String> getTabCompleteOptions(final Server server, final CommandSource sender, final String commandLabel, final String[] args) {
|
|
if (args.length == 1) {
|
|
try {
|
|
return new ArrayList<>(ess.getJails().getList());
|
|
} catch (Exception e) {
|
|
return Collections.emptyList();
|
|
}
|
|
} else {
|
|
return Collections.emptyList();
|
|
}
|
|
}
|
|
}
|