mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-04-27 17:09:43 +00:00
Fix 'manucheckp' to correctly report if a permission is available from
GroupManager or Bukkit.
This commit is contained in:
parent
7726fd0081
commit
4c485f3147
2 changed files with 22 additions and 21 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue