Fix typo and help command
This commit is contained in:
@@ -48,13 +48,6 @@ public class HelpCommand extends ClientCommand {
|
||||
commands.add(cc);
|
||||
}
|
||||
}
|
||||
ccs = Main.getMainBiscuit().getProperties().getCustomCmds();
|
||||
for(String s : ccs) {
|
||||
if(!Util.contains(biscuit.getProperties().disabledCommands(), s)) {
|
||||
CustomCommand cc = new CustomCommand(s, Main.getMainBiscuit());
|
||||
commands.add(cc);
|
||||
}
|
||||
}
|
||||
|
||||
for(BaseCommand bc : CommandManager.getCommands()) {
|
||||
String bclabel = bc.getUsage().split(" ")[0];
|
||||
|
||||
@@ -17,7 +17,7 @@ public class SaveConfigCommand extends ClientCommand{
|
||||
public SaveConfigCommand() {
|
||||
name = "Save Config";
|
||||
description = "Saves the config of the current guild.";
|
||||
usage = Main.getMainBiscuit().getProperties().getCommandSignifier() + "getconfig (with file upload)";
|
||||
usage = Main.getMainBiscuit().getProperties().getCommandSignifier() + "saveconfig (with file upload)";
|
||||
minArgs = 0;
|
||||
maxArgs = 0;
|
||||
identifiers.add("saveconfig");
|
||||
|
||||
Reference in New Issue
Block a user