update command descriptions

This commit is contained in:
Bella 2020-02-17 11:28:55 -05:00
parent 05395c7c41
commit ffee6b0d21
2 changed files with 2 additions and 2 deletions

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 (get, copy, set)");
setDescription("Does NBT related stuff (&7get&8, &7copy&8, &7set&8)");
}
Minecraft mc = Minecraft.getMinecraft();

View File

@ -21,7 +21,7 @@ public class SignBookCommand extends Command {
public SignBookCommand() {
super("signbook", new ChunkBuilder().append("name").build(), "book", "sign");
setDescription("Colored book names. #n for a new line and & for colour codes");
setDescription("Colored book names. &7#n&8 for a new line and &7&&8 for colour codes");
}
@Override