fix: wrong /velocitab permission node

This commit is contained in:
William 2024-06-19 10:57:13 +01:00
parent 84ae7a9437
commit 1d05a1b34e
No known key found for this signature in database

View File

@ -155,7 +155,7 @@ public final class VelocitabCommand {
}
private boolean hasPermission(@NotNull CommandSource source, @NotNull String command) {
return source.hasPermission(String.join("velocitab", "command", command));
return source.hasPermission(String.join(".", "velocitab", "command", command));
}
private void sendAboutInfo(@NotNull CommandSource source) {