diff --git a/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemovePrefix.java b/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemovePrefix.java index ca00ab537..b04fd1061 100644 --- a/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemovePrefix.java +++ b/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemovePrefix.java @@ -48,10 +48,10 @@ public class MetaRemovePrefix extends SharedSubCommand { super("removeprefix", "Removes a prefix", Permission.USER_META_REMOVEPREFIX, Permission.GROUP_META_REMOVEPREFIX, Predicates.notInRange(1, 4), Arg.list( - Arg.create("priority", true, "the priority to add the prefix at"), + Arg.create("priority", true, "the priority to remove the prefix at"), Arg.create("prefix", false, "the prefix string"), - Arg.create("server", false, "the server to add the prefix on"), - Arg.create("world", false, "the world to add the prefix on") + Arg.create("server", false, "the server to remove the prefix on"), + Arg.create("world", false, "the world to remove the prefix on") ) ); } diff --git a/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemoveSuffix.java b/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemoveSuffix.java index 1148e5288..fb0b8a340 100644 --- a/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemoveSuffix.java +++ b/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemoveSuffix.java @@ -48,10 +48,10 @@ public class MetaRemoveSuffix extends SharedSubCommand { super("removesuffix", "Removes a suffix", Permission.USER_META_REMOVESUFFIX, Permission.GROUP_META_REMOVESUFFIX, Predicates.notInRange(1, 4), Arg.list( - Arg.create("priority", true, "the priority to add the suffix at"), + Arg.create("priority", true, "the priority to remove the suffix at"), Arg.create("suffix", false, "the suffix string"), - Arg.create("server", false, "the server to add the suffix on"), - Arg.create("world", false, "the world to add the suffix on") + Arg.create("server", false, "the server to remove the suffix on"), + Arg.create("world", false, "the world to remove the suffix on") ) ); } diff --git a/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemoveTempPrefix.java b/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemoveTempPrefix.java index 2046a6ea2..ab14a3bc3 100644 --- a/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemoveTempPrefix.java +++ b/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemoveTempPrefix.java @@ -48,10 +48,10 @@ public class MetaRemoveTempPrefix extends SharedSubCommand { super("removetempprefix", "Removes a temporary prefix", Permission.USER_META_REMOVETEMP_PREFIX, Permission.GROUP_META_REMOVETEMP_PREFIX, Predicates.notInRange(1, 4), Arg.list( - Arg.create("priority", true, "the priority to add the prefix at"), + Arg.create("priority", true, "the priority to remove the prefix at"), Arg.create("prefix", false, "the prefix string"), - Arg.create("server", false, "the server to add the prefix on"), - Arg.create("world", false, "the world to add the prefix on") + Arg.create("server", false, "the server to remove the prefix on"), + Arg.create("world", false, "the world to remove the prefix on") ) ); } diff --git a/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemoveTempSuffix.java b/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemoveTempSuffix.java index 27afecdef..cc4004c99 100644 --- a/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemoveTempSuffix.java +++ b/common/src/main/java/me/lucko/luckperms/common/commands/generic/meta/MetaRemoveTempSuffix.java @@ -48,10 +48,10 @@ public class MetaRemoveTempSuffix extends SharedSubCommand { super("removetempsuffix", "Removes a temporary suffix", Permission.USER_META_REMOVETEMP_SUFFIX, Permission.GROUP_META_REMOVETEMP_SUFFIX, Predicates.notInRange(1, 4), Arg.list( - Arg.create("priority", true, "the priority to add the suffix at"), + Arg.create("priority", true, "the priority to remove the suffix at"), Arg.create("suffix", false, "the suffix string"), - Arg.create("server", false, "the server to add the suffix on"), - Arg.create("world", false, "the world to add the suffix on") + Arg.create("server", false, "the server to remove the suffix on"), + Arg.create("world", false, "the world to remove the suffix on") ) ); }