mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-15 11:04:29 +02:00
Fix 'manucheckp' to correctly report if a permission is available from
GroupManager or Bukkit.
This commit is contained in:
@@ -96,3 +96,4 @@ v 1.8:
|
|||||||
- Changed the way events are raised to prevent variable corruption.
|
- Changed the way events are raised to prevent variable corruption.
|
||||||
- Reload GlobalGroups when you perform a world load.
|
- Reload GlobalGroups when you perform a world load.
|
||||||
- Changed GlobalGroups to save/load before local groups in the scheduled data saving/loading
|
- Changed GlobalGroups to save/load before local groups in the scheduled data saving/loading
|
||||||
|
- Fix 'manucheckp' to correctly report if a permission is available from GroupManager or Bukkit.
|
@@ -787,15 +787,14 @@ public class GroupManager extends JavaPlugin {
|
|||||||
}
|
}
|
||||||
targetPlayer = this.getServer().getPlayer(auxUser.getName());
|
targetPlayer = this.getServer().getPlayer(auxUser.getName());
|
||||||
// VALIDANDO PERMISSAO
|
// VALIDANDO PERMISSAO
|
||||||
permissionResult = permissionHandler.checkFullUserPermission(auxUser, args[1]);
|
permissionResult = permissionHandler.checkFullGMPermission(auxUser, args[1], false);
|
||||||
|
|
||||||
if (permissionResult.resultType.equals(PermissionCheckResult.Type.NOTFOUND)) {
|
if (permissionResult.resultType.equals(PermissionCheckResult.Type.NOTFOUND)) {
|
||||||
|
//No permissions found in GM so fall through and check Bukkit.
|
||||||
sender.sendMessage(ChatColor.RED + "The player doesn't have access to that permission");
|
sender.sendMessage(ChatColor.RED + "The player doesn't have access to that permission");
|
||||||
sender.sendMessage(ChatColor.YELLOW + "SuperPerms reports Node: " + targetPlayer.hasPermission(args[1]));
|
|
||||||
return false;
|
} else {
|
||||||
}
|
// This permission was found in groupmanager.
|
||||||
// PARECE OK
|
|
||||||
// auxString =
|
|
||||||
// permissionHandler.checkUserOnlyPermission(auxUser, args[1]);
|
|
||||||
if (permissionResult.owner instanceof User) {
|
if (permissionResult.owner instanceof User) {
|
||||||
if (permissionResult.resultType.equals(PermissionCheckResult.Type.NEGATION)) {
|
if (permissionResult.resultType.equals(PermissionCheckResult.Type.NEGATION)) {
|
||||||
sender.sendMessage(ChatColor.RED + "The user has directly a negation node for that permission.");
|
sender.sendMessage(ChatColor.RED + "The user has directly a negation node for that permission.");
|
||||||
@@ -811,6 +810,7 @@ public class GroupManager extends JavaPlugin {
|
|||||||
}
|
}
|
||||||
sender.sendMessage(ChatColor.YELLOW + "Permission Node: " + permissionResult.accessLevel);
|
sender.sendMessage(ChatColor.YELLOW + "Permission Node: " + permissionResult.accessLevel);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// superperms
|
// superperms
|
||||||
if (targetPlayer != null) {
|
if (targetPlayer != null) {
|
||||||
|
Reference in New Issue
Block a user