aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/soundchan/LocalAudioManager.java
diff options
context:
space:
mode:
authorMatt <mattkohls13@gmail.com>2018-04-14 15:32:20 -0400
committerGitHub <noreply@github.com>2018-04-14 15:32:20 -0400
commite983b51b8c125663d8b1401d559d6b578d8f156d (patch)
tree9187e688ad78f9ea1ad104a6c71857e6a24c7985 /src/main/java/soundchan/LocalAudioManager.java
parentf8fe02e835c6417a54033b30a66c9c3bc2097836 (diff)
parent14006737593b80d198f0d19d820a37bd984e8ccc (diff)
downloadSoundChan-e983b51b8c125663d8b1401d559d6b578d8f156d.tar.gz
SoundChan-e983b51b8c125663d8b1401d559d6b578d8f156d.tar.bz2
SoundChan-e983b51b8c125663d8b1401d559d6b578d8f156d.zip
Merge pull request #5 from bwaggone/feature/preempt-sound-effects
Feature/preempt sound effects
Diffstat (limited to 'src/main/java/soundchan/LocalAudioManager.java')
-rw-r--r--src/main/java/soundchan/LocalAudioManager.java3
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();
}