From be2a8b7b0774d0b9172ac739d70345ca408234ab Mon Sep 17 00:00:00 2001 From: Luck Date: Wed, 12 Apr 2017 17:59:51 +0100 Subject: [PATCH] Fix incorrect chat meta command usage --- .../common/commands/impl/generic/meta/MetaRemoveChatMeta.java | 3 +-- .../commands/impl/generic/meta/MetaRemoveTempChatMeta.java | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/common/src/main/java/me/lucko/luckperms/common/commands/impl/generic/meta/MetaRemoveChatMeta.java b/common/src/main/java/me/lucko/luckperms/common/commands/impl/generic/meta/MetaRemoveChatMeta.java index 67ec56d90..0f05b8720 100644 --- a/common/src/main/java/me/lucko/luckperms/common/commands/impl/generic/meta/MetaRemoveChatMeta.java +++ b/common/src/main/java/me/lucko/luckperms/common/commands/impl/generic/meta/MetaRemoveChatMeta.java @@ -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; diff --git a/common/src/main/java/me/lucko/luckperms/common/commands/impl/generic/meta/MetaRemoveTempChatMeta.java b/common/src/main/java/me/lucko/luckperms/common/commands/impl/generic/meta/MetaRemoveTempChatMeta.java index 7529191f3..8fce3137d 100644 --- a/common/src/main/java/me/lucko/luckperms/common/commands/impl/generic/meta/MetaRemoveTempChatMeta.java +++ b/common/src/main/java/me/lucko/luckperms/common/commands/impl/generic/meta/MetaRemoveTempChatMeta.java @@ -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;