mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 04:20:41 +00:00
Merge pull request #362 from necrodoom/patch-67
fix a few groupmanager.java errors
This commit is contained in:
commit
17dab04094
1 changed files with 9 additions and 4 deletions
|
@ -393,7 +393,8 @@ public class GroupManager extends JavaPlugin {
|
|||
// PREVENT GM COMMANDS BEING USED ON COMMANDBLOCKS
|
||||
if (sender instanceof BlockCommandSender && !isAllowCommandBlocks) {
|
||||
Block block = ((BlockCommandSender)sender).getBlock();
|
||||
GroupManager.logger.warning(ChatColor.RED + "GM Commands can not be called from the CommandBlock at location: " + ChatColor.GREEN + block.getWorld().getName() + " - " + block.getX() + ", " + block.getY() + ", " + block.getZ());
|
||||
GroupManager.logger.warning(ChatColor.RED + "GM Commands can not be called from CommandBlocks");
|
||||
GroupManager.logger.warning(ChatColor.RED + "Location: " + ChatColor.GREEN + block.getWorld().getName() + ", " + block.getX() + ", " + block.getY() + ", " + block.getZ());
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -674,7 +675,7 @@ public class GroupManager extends JavaPlugin {
|
|||
}
|
||||
auxGroup = dataHolder.getGroup(args[0]);
|
||||
if (auxGroup != null) {
|
||||
sender.sendMessage(ChatColor.RED + "" + args[0] + " Group doesnt exist!");
|
||||
sender.sendMessage(ChatColor.RED + "" + args[0] + " Group already exist!");
|
||||
return true;
|
||||
}
|
||||
// Seems OK
|
||||
|
@ -770,8 +771,10 @@ public class GroupManager extends JavaPlugin {
|
|||
} else if (permissionResult.resultType.equals(PermissionCheckResult.Type.FOUND)) {
|
||||
sender.sendMessage(ChatColor.RED + "The user already has direct access to that permission.");
|
||||
sender.sendMessage(ChatColor.RED + "Node: " + permissionResult.accessLevel);
|
||||
if (permissionResult.accessLevel.equalsIgnoreCase(args[1]));
|
||||
if (permissionResult.accessLevel.equalsIgnoreCase(args[1]))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
} else if (permissionResult.resultType.equals(PermissionCheckResult.Type.NEGATION)) {
|
||||
// Warn only while still allowing you to add the node.
|
||||
sender.sendMessage(ChatColor.RED + "The user already has a matching Negated node.");
|
||||
|
@ -1028,8 +1031,10 @@ public class GroupManager extends JavaPlugin {
|
|||
sender.sendMessage(ChatColor.RED + "The group already has direct access to that permission.");
|
||||
sender.sendMessage(ChatColor.RED + "Node: " + permissionResult.accessLevel);
|
||||
// Abort adding if the node is a direct match.
|
||||
if (permissionResult.accessLevel.equalsIgnoreCase(args[1]));
|
||||
if (permissionResult.accessLevel.equalsIgnoreCase(args[1]))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
} else if (permissionResult.resultType.equals(PermissionCheckResult.Type.NEGATION)) {
|
||||
// Warn only while still allowing you to add the node.
|
||||
sender.sendMessage(ChatColor.RED + "The group already has a matching Negated node.");
|
||||
|
|
Loading…
Reference in a new issue