diff options
author | Matt Kohls <mattkohls13@gmail.com> | 2018-04-14 15:49:24 -0400 |
---|---|---|
committer | Matt Kohls <mattkohls13@gmail.com> | 2018-04-14 15:49:24 -0400 |
commit | 70f6beee0fb9569e8549752e627929ae506c5e0c (patch) | |
tree | 3786e817b37b0be9ae1a7d2bfc3f5080869bad0d /src/main/java/soundchan/LocalAudioManager.java | |
parent | 780705840a868f0b776c9f18832996ea67e70aa3 (diff) | |
parent | e983b51b8c125663d8b1401d559d6b578d8f156d (diff) | |
download | SoundChan-70f6beee0fb9569e8549752e627929ae506c5e0c.tar.gz SoundChan-70f6beee0fb9569e8549752e627929ae506c5e0c.tar.bz2 SoundChan-70f6beee0fb9569e8549752e627929ae506c5e0c.zip |
Merge branch 'master' of https://github.com/bwaggone/SoundChan into feature/add-help
Diffstat (limited to 'src/main/java/soundchan/LocalAudioManager.java')
-rw-r--r-- | src/main/java/soundchan/LocalAudioManager.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/soundchan/LocalAudioManager.java b/src/main/java/soundchan/LocalAudioManager.java index 314f6b9..9a4e299 100644 --- a/src/main/java/soundchan/LocalAudioManager.java +++ b/src/main/java/soundchan/LocalAudioManager.java @@ -31,11 +31,12 @@ public class LocalAudioManager { public void ListSounds(MessageChannel channel){ Set<String> localSounds = filenameDict.keySet(); - String toPrint = "The following sounds you can play are:\n"; + String toPrint = "The following sounds you can play are:\n```"; for (String sound: localSounds) { toPrint = toPrint + " * " + sound + "\n"; } + toPrint = toPrint + "```"; channel.sendMessage(toPrint).queue(); } |