TF-EssentialsX/Essentials/src/com/earth2me/essentials/commands/Commandshowkit.java
Josh Roy f6cb9ff470
Improve command codestyle (#3337)
Co-authored-by: MD <1917406+md678685@users.noreply.github.com>

Fixes #3579 (async `/skull` command)
Fixes #3336 (improve codestyle of commands)
Partially addresses #3339 (`/spawn` and `/setspawn` are now hidden from tabcomplete)
Closes #3087 (`/paytoggle` is now a loop command)
2020-08-11 19:09:22 +01:00

42 lines
1.3 KiB
Java

package com.earth2me.essentials.commands;
import com.earth2me.essentials.Kit;
import com.earth2me.essentials.User;
import org.bukkit.Server;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
import static com.earth2me.essentials.I18n.tl;
public class Commandshowkit extends EssentialsCommand {
public Commandshowkit() {
super("showkit");
}
@Override
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception {
if (args.length != 1) {
throw new NotEnoughArgumentsException();
}
for (final String kitName : args[0].toLowerCase(Locale.ENGLISH).split(",")) {
user.sendMessage(tl("kitContains", kitName));
for (String s : new Kit(kitName, ess).getItems()) {
user.sendMessage(tl("kitItem", s));
}
}
}
@Override
protected List<String> getTabCompleteOptions(final Server server, final User user, final String commandLabel, final String[] args) {
if (args.length == 1) {
return new ArrayList<>(ess.getKits().getKits().getKeys(false)); // TODO: Move this to its own method
} else {
return Collections.emptyList();
}
}
}