Skip to content

Commit

Permalink
Fixing a couple small bugs in the list command responses.
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkside138 committed May 7, 2016
1 parent 6ae5631 commit 478a8c5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public void onMessageReceived(MessageReceivedEvent event) {
if (commandString.length() > maxLineLength) {
replyByPrivateMessage(event, "You have " + soundList.size() + " pages of soundFiles. Reply: ```?list pageNumber``` to request a specific page of results.");
} else {
replyByPrivateMessage(event, "```Type any of the following into the chat to play the sound:\n```");
replyByPrivateMessage(event, "```" + soundList.get(0) + "```");
replyByPrivateMessage(event, "Type any of the following into the chat to play the sound:\n");
replyByPrivateMessage(event, soundList.get(0));
}
} else {
String[] messageSplit = message.split(" ");
Expand Down

0 comments on commit 478a8c5

Please sign in to comment.