diff --git a/src/main/java/net/aoba/cmd/CommandManager.java b/src/main/java/net/aoba/cmd/CommandManager.java index 5714f622..7bf3f6d0 100644 --- a/src/main/java/net/aoba/cmd/CommandManager.java +++ b/src/main/java/net/aoba/cmd/CommandManager.java @@ -120,7 +120,7 @@ public void command(String[] commandIn) { // If the command does not exist, throw an error. if (command == null) - sendChatMessage("Invalid Command! Type .aoba help for a list of commands."); + sendChatMessage("Invalid Command! Type " + Formatting.LIGHT_PURPLE + ".aoba help" + Formatting.RESET + " for a list of commands."); else { // Otherwise, create a new parameter list. String[] parameterList = new String[commandIn.length - 2]; @@ -134,7 +134,7 @@ public void command(String[] commandIn) { command.runCommand(parameterList); } } catch(ArrayIndexOutOfBoundsException e) { - sendChatMessage("Invalid Command! Type .aoba help for a list of commands."); + sendChatMessage("Invalid Command! Type " + Formatting.LIGHT_PURPLE + ".aoba help" + Formatting.RESET + " for a list of commands."); } catch (InvalidSyntaxException e) { e.PrintToChat(); }