mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-24 19:46:32 +01:00
Fix some usage messages
This commit is contained in:
parent
599072eef6
commit
81c71777cb
@ -42,7 +42,7 @@ import java.util.UUID;
|
|||||||
public class CheckCommand extends SingleCommand {
|
public class CheckCommand extends SingleCommand {
|
||||||
public CheckCommand() {
|
public CheckCommand() {
|
||||||
super("Check", "Perform a standard permission check on an online player",
|
super("Check", "Perform a standard permission check on an online player",
|
||||||
"/%s search <user> <permission>", Permission.CHECK, Predicates.not(2),
|
"/%s check <user> <permission>", Permission.CHECK, Predicates.not(2),
|
||||||
Arg.list(
|
Arg.list(
|
||||||
Arg.create("user", true, "the user to check"),
|
Arg.create("user", true, "the user to check"),
|
||||||
Arg.create("permission", true, "the permission to check for")
|
Arg.create("permission", true, "the permission to check for")
|
||||||
|
@ -40,7 +40,7 @@ public class VerboseCommand extends SingleCommand {
|
|||||||
public VerboseCommand() {
|
public VerboseCommand() {
|
||||||
super("Verbose", "Manage verbose permission checking", "/%s verbose <true|false> [filter]", Permission.VERBOSE, Predicates.is(0),
|
super("Verbose", "Manage verbose permission checking", "/%s verbose <true|false> [filter]", Permission.VERBOSE, Predicates.is(0),
|
||||||
Arg.list(
|
Arg.list(
|
||||||
Arg.create("true|false|record|paste", true, "whether to enable/disable logging, or start/stop recording"),
|
Arg.create("on|record|off|paste", true, "whether to enable/disable logging, or to paste the logged output"),
|
||||||
Arg.create("filter", false, "the filter to match entries against")
|
Arg.create("filter", false, "the filter to match entries against")
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user