Skip to content

Commit 282bf5c

Browse files
authored
Update UltraCommand.java
288 - 291 - UltraCommand - You don't have permission for this command, If you believe you should ask an admin for the following permission. ( 206 - 207 - UltraCommand - Permissions to LowerCase (for Linux/BSD) 142 - 143 - UltraCommand - Saved Successfully
1 parent 90aff27 commit 282bf5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/kierdavis/ultracommand/UltraCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void saveCustomCommands() {
5151
try {
5252
this.commandsConfig.save(this.commandsFile);
5353
this.dirty = false;
54-
getLogger().info("Successfully Saved " + this.commandsFile.toString());
54+
getLogger().info("Saved Successfully " + this.commandsFile.toString());
5555
} catch (IOException iOException) {
5656
getLogger().severe("Failed to Save " + this.commandsFile.toString() + ": " + iOException.toString());
5757
}
@@ -253,7 +253,7 @@ public boolean doCommand(Player paramPlayer, String[] paramArrayOfString) {
253253
if (customCommand != null) {
254254
String str1 = "ultracommand.commands." + str;
255255
if (!paramPlayer.hasPermission(str1) && !paramPlayer.hasPermission("ultracommand.commands.*")) {
256-
paramPlayer.sendMessage(ChatColor.YELLOW + "You don't have permission for this command (" + str1 + ")");
256+
paramPlayer.sendMessage(ChatColor.YELLOW + "You don't have permission for this command, If you believe you should ask an admin for the following permission. ( " + str1 + ")");
257257
return true;
258258
}
259259
customCommand.execute(paramPlayer, Arrays.<String>copyOfRange(paramArrayOfString, 1, paramArrayOfString.length));

0 commit comments

Comments
 (0)