#3840: Add separate permission for "/alertraw"

This commit is contained in:
Mickey42302 2025-06-03 05:58:32 -04:00 committed by GitHub
parent 9cd0d3289f
commit 244412405a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ public class CommandAlertRaw extends Command
public CommandAlertRaw()
{
super( "alertraw", "bungeecord.command.alert" );
super( "alertraw", "bungeecord.command.alertraw" );
}
@Override

View File

@ -94,7 +94,7 @@ public class YamlConfig implements ConfigurationAdapter
} ) );
set( "permissions.admin", Arrays.asList( new String[]
{
"bungeecord.command.alert", "bungeecord.command.end", "bungeecord.command.ip", "bungeecord.command.reload", "bungeecord.command.kick", "bungeecord.command.send", "bungeecord.command.find"
"bungeecord.command.alert", "bungeecord.command.alertraw", "bungeecord.command.end", "bungeecord.command.ip", "bungeecord.command.reload", "bungeecord.command.kick", "bungeecord.command.send", "bungeecord.command.find"
} ) );
}