mirror of
https://github.com/songoda/UltimateModeration.git
synced 2025-02-16 19:41:19 +01:00
Modified the way permissions are stored for moderations.
This commit is contained in:
parent
a4e095c330
commit
070bb51eaa
@ -27,7 +27,7 @@ public abstract class AbstractModeration {
|
||||
public abstract String getDescription();
|
||||
|
||||
public String getPermission() {
|
||||
return "ultimatemoderation." + getType().name().toLowerCase();
|
||||
return "um." + getProper().toLowerCase();
|
||||
}
|
||||
|
||||
public boolean hasPermission(Player player) {
|
||||
@ -35,7 +35,7 @@ public abstract class AbstractModeration {
|
||||
}
|
||||
|
||||
public boolean isExempt(OfflinePlayer player) {
|
||||
return VaultPermissions.hasPermission(player, "ultimatemoderation." + getType().name().toLowerCase() + ".exempt");
|
||||
return VaultPermissions.hasPermission(player, getPermission() + ".exempt");
|
||||
}
|
||||
|
||||
protected void registerCommand(UltimateModeration plugin) {
|
||||
|
Loading…
Reference in New Issue
Block a user