Fix incorrect chat meta command usage

This commit is contained in:
Luck 2017-04-12 17:59:51 +01:00
parent 261fc82016
commit be2a8b7b07
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B
2 changed files with 2 additions and 4 deletions

View File

@ -56,8 +56,7 @@ public class MetaRemoveChatMeta extends SharedSubCommand {
Arg.list(
Arg.create("priority", true, "the priority to remove the " + DESCRIPTOR.apply(isPrefix) + " at"),
Arg.create(DESCRIPTOR.apply(isPrefix), false, "the " + DESCRIPTOR.apply(isPrefix) + " string"),
Arg.create("server", false, "the server to remove the " + DESCRIPTOR.apply(isPrefix) + " on"),
Arg.create("world", false, "the world to remove the " + DESCRIPTOR.apply(isPrefix) + " on")
Arg.create("context...", false, "the contexts to remove the " + DESCRIPTOR.apply(isPrefix) + " in")
)
);
this.isPrefix = isPrefix;

View File

@ -56,8 +56,7 @@ public class MetaRemoveTempChatMeta extends SharedSubCommand {
Arg.list(
Arg.create("priority", true, "the priority to remove the " + DESCRIPTOR.apply(isPrefix) + " at"),
Arg.create(DESCRIPTOR.apply(isPrefix), false, "the " + DESCRIPTOR.apply(isPrefix) + " string"),
Arg.create("server", false, "the server to remove the " + DESCRIPTOR.apply(isPrefix) + " on"),
Arg.create("world", false, "the world to remove the " + DESCRIPTOR.apply(isPrefix) + " on")
Arg.create("context...", false, "the contexts to remove the " + DESCRIPTOR.apply(isPrefix) + " in")
)
);
this.isPrefix = isPrefix;