diff --git a/proxy/src/main/java/com/velocitypowered/proxy/command/builtin/VelocityCommand.java b/proxy/src/main/java/com/velocitypowered/proxy/command/builtin/VelocityCommand.java index 26f99ecd22..7904a06a0e 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/command/builtin/VelocityCommand.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/command/builtin/VelocityCommand.java @@ -74,7 +74,7 @@ public final class VelocityCommand { @SuppressWarnings("checkstyle:MissingJavadocMethod") public static BrigadierCommand create(final VelocityServer server) { final LiteralCommandNode dump = BrigadierCommand.literalArgumentBuilder("dump") - .requires(source -> source.getPermissionValue("velocity.command.plugins") == Tristate.TRUE) + .requires(source -> source.getPermissionValue("velocity.command.dump") == Tristate.TRUE) .executes(new Dump(server)) .build(); final LiteralCommandNode heap = BrigadierCommand.literalArgumentBuilder("heap")