diff --git a/commands/random/soundboard.js b/commands/random/soundboard.js index 45ca9457..e0ffc06a 100644 --- a/commands/random/soundboard.js +++ b/commands/random/soundboard.js @@ -30,7 +30,7 @@ class SoundBoardCommand extends commando.Command { if(soundToPlay === "") { message.channel.send(':x: Error! No sound set. Please use ;soundboard list to see a list of sounds you can play.'); } else if(soundToPlay === 'list') { - message.channel.send("**Available Sounds:** Cat, Pikachu, Vader, Doh, It's a Trap, Mario Death, Pokemon Center, Dun Dun Dun, Spongebob, Ugly Barnacle, Woo Hoo, Space, GLaDOS Bird, Airhorn, Zelda Chest"); + message.channel.send("**Available Sounds:** Cat, Pikachu, Vader, Doh, It's a Trap, Mario Death, Pokemon Center, Dun Dun Dun, Spongebob, Ugly Barnacle, Woo Hoo, Space, GLaDOS Bird, Airhorn, Zelda Chest, Eat my Shorts, No This is Patrick"); } else if(soundToPlay === sounds.avaliable[soundToPlay]) { let alreadyConnected = this.client.voiceConnections.get(voiceChannel.guild.id); if(alreadyConnected) { diff --git a/commands/random/sounds.json b/commands/random/sounds.json index 3c2db09d..652c9a58 100644 --- a/commands/random/sounds.json +++ b/commands/random/sounds.json @@ -14,7 +14,9 @@ "space": "space", "glados bird": "glados bird", "airhorn": "airhorn", - "zelda chest": "zelda chest" + "zelda chest": "zelda chest", + "eat my shorts": "eat my shorts", + "no this is patrick": "no this is patrick" }, "paths": { "cat": "./sounds/cat.mp3", @@ -31,6 +33,8 @@ "space": "./sounds/space.mp3", "glados bird": "./sounds/glados-bird.mp3", "airhorn": "./sounds/airhorn.mp3", - "zelda chest": "./sounds/zelda-chest.mp3" + "zelda chest": "./sounds/zelda-chest.mp3", + "eat my shorts": "./sounds/eat-my-shorts.mp3", + "no this is patrick": "./sounds/no-this-is-patrick.mp3" } } \ No newline at end of file diff --git a/sounds/eat-my-shorts.mp3 b/sounds/eat-my-shorts.mp3 new file mode 100644 index 00000000..537a5c02 Binary files /dev/null and b/sounds/eat-my-shorts.mp3 differ diff --git a/sounds/no-this-is-patrick.mp3 b/sounds/no-this-is-patrick.mp3 new file mode 100644 index 00000000..0ca29e01 Binary files /dev/null and b/sounds/no-this-is-patrick.mp3 differ