2015-04-20 19:33:36 +00:00
|
|
|
package com.earth2me.essentials.commands;
|
|
|
|
|
|
|
|
import com.earth2me.essentials.Kit;
|
|
|
|
import com.earth2me.essentials.User;
|
|
|
|
import org.bukkit.Server;
|
|
|
|
|
2017-06-11 00:17:43 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.List;
|
2015-04-20 19:33:36 +00:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
final String[] kits = args[0].toLowerCase(Locale.ENGLISH).split(",");
|
|
|
|
for (final String kitName : kits) {
|
|
|
|
Kit kit = new Kit(kitName, ess);
|
|
|
|
user.sendMessage(tl("kitContains", kitName));
|
|
|
|
for (String s : kit.getItems()) {
|
|
|
|
user.sendMessage(tl("kitItem", s));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-06-11 00:17:43 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected List<String> getTabCompleteOptions(final Server server, final User user, final String commandLabel, final String[] args) {
|
|
|
|
if (args.length == 1) {
|
2018-01-18 08:25:00 +00:00
|
|
|
return new ArrayList<>(ess.getKits().getKits().getKeys(false)); // TODO: Move this to its own method
|
2017-06-11 00:17:43 +00:00
|
|
|
} else {
|
|
|
|
return Collections.emptyList();
|
|
|
|
}
|
|
|
|
}
|
2015-04-20 19:33:36 +00:00
|
|
|
}
|