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;