update command descriptions and formatting

This commit is contained in:
Bella 2020-03-12 18:11:19 -04:00
parent ae8e367998
commit 60380f2f98
No known key found for this signature in database
GPG Key ID: 03B01AC937D1C89C
3 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ public class BindCommand extends Command {
.append("[key]|[on|off]", true)
.build()
);
setDescription("Binds a command and or settings to a key");
setDescription("Binds a module to a key, or allows you to change modifier options");
}
@Override

View File

@ -37,7 +37,7 @@ public class HelpCommand extends Command {
public HelpCommand() {
super("help", new SyntaxChunk[]{});
setDescription("Delivers help on certain subjects. Use &7" + Command.getCommandPrefix() + "help subjects&8 for a list.");
setDescription("Delivers help on certain subjects. Use &f" + Command.getCommandPrefix() + "help subjects&7 for a list.");
}
@Override

View File

@ -21,7 +21,7 @@ public class NBTCommand extends Command {
super("nbt", new ChunkBuilder()
.append("action", true, new EnumParser(new String[]{"get", "copy", "wipe"}))
.build());
setDescription("Does NBT related stuff (&7get&8, &7copy&8, &7set&8)");
setDescription("Does NBT related stuff (&fget&7, &fcopy&7, &fset&7)");
}
Minecraft mc = Minecraft.getMinecraft();