diff options
author | ElgarL <ElgarL@palmergames.com> | 2012-12-28 05:43:54 -0800 |
---|---|---|
committer | ElgarL <ElgarL@palmergames.com> | 2012-12-28 05:43:54 -0800 |
commit | 257165584e5fb8ef4ec49b7b2c253f9f77230037 (patch) | |
tree | cf928c2dc0ba83f4c0546dd995689079b79c17ef /EssentialsGroupManager/src | |
parent | 68e401821fccf6f0d4b6a2047fe68f96b36acb84 (diff) | |
parent | 0bfb079cbb072996f7213cf44a39a127a82fe1c2 (diff) | |
download | Essentials-257165584e5fb8ef4ec49b7b2c253f9f77230037.tar Essentials-257165584e5fb8ef4ec49b7b2c253f9f77230037.tar.gz Essentials-257165584e5fb8ef4ec49b7b2c253f9f77230037.tar.lz Essentials-257165584e5fb8ef4ec49b7b2c253f9f77230037.tar.xz Essentials-257165584e5fb8ef4ec49b7b2c253f9f77230037.zip |
Merge pull request #228 from necrodoom/patch-8
Update EssentialsGroupManager/src/org/anjocaido/groupmanager/GroupManage...
Diffstat (limited to 'EssentialsGroupManager/src')
-rw-r--r-- | EssentialsGroupManager/src/org/anjocaido/groupmanager/GroupManager.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/EssentialsGroupManager/src/org/anjocaido/groupmanager/GroupManager.java b/EssentialsGroupManager/src/org/anjocaido/groupmanager/GroupManager.java index f38f91b8e..df66ac59b 100644 --- a/EssentialsGroupManager/src/org/anjocaido/groupmanager/GroupManager.java +++ b/EssentialsGroupManager/src/org/anjocaido/groupmanager/GroupManager.java @@ -394,7 +394,7 @@ public class GroupManager extends JavaPlugin { senderPlayer = (Player) sender; if (!lastError.isEmpty() && !commandLabel.equalsIgnoreCase("manload")) { - sender.sendMessage(ChatColor.RED + "All commands are locked due to an error." + ChatColor.BOLD + "" + ChatColor.UNDERLINE + "Check the log" + ChatColor.RESET + " and then try a '/manload'."); + sender.sendMessage(ChatColor.RED + "All commands are locked due to an error. " + ChatColor.BOLD + "" + ChatColor.UNDERLINE + "Check the log" + ChatColor.RESET + "" + ChatColor.RED " and then try a '/manload'."); return true; } @@ -409,7 +409,7 @@ public class GroupManager extends JavaPlugin { } else if ((sender instanceof ConsoleCommandSender) || (sender instanceof RemoteConsoleCommandSender)) { if (!lastError.isEmpty() && !commandLabel.equalsIgnoreCase("manload")) { - sender.sendMessage(ChatColor.RED + "All commands are locked due to an error." + ChatColor.BOLD + "" + ChatColor.UNDERLINE + "Check the log" + ChatColor.RESET + " and then try a '/manload'."); + sender.sendMessage(ChatColor.RED + "All commands are locked due to an error. " + ChatColor.BOLD + "" + ChatColor.UNDERLINE + "Check the log" + ChatColor.RESET + "" + ChatColor.RED " and then try a '/manload'."); return true; } @@ -1676,7 +1676,7 @@ public class GroupManager extends JavaPlugin { if (args.length > 0) { if (!lastError.isEmpty()) { - sender.sendMessage(ChatColor.RED + "All commands are locked due to an error." + ChatColor.BOLD + "" + ChatColor.UNDERLINE + "Check the log" + ChatColor.RESET + " and then try a '/manload'."); + sender.sendMessage(ChatColor.RED + "All commands are locked due to an error. " + ChatColor.BOLD + "" + ChatColor.UNDERLINE + "Check the log" + ChatColor.RESET + "" + ChatColor.RED " and then try a '/manload'."); return true; } @@ -2045,4 +2045,4 @@ public class GroupManager extends JavaPlugin { return globalGroups; } -}
\ No newline at end of file +} |