From 29ac65d220cb371846a27e7cae226d31e70d9579 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Thu, 23 Mar 2017 13:31:46 +0000 Subject: [PATCH] Don't await react --- commands/random/soundboard.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/random/soundboard.js b/commands/random/soundboard.js index 399964d4..bc9a85ea 100644 --- a/commands/random/soundboard.js +++ b/commands/random/soundboard.js @@ -52,9 +52,9 @@ module.exports = class SoundBoardCommand extends commando.Command { await voiceChannel.join().then(connection => { let stream = sounds.paths[soundToPlay]; let dispatcher = connection.playStream(stream); - await message.react('🔊'); + message.react('🔊'); dispatcher.on('end', () => { - await message.react('✅'); + message.react('✅'); return voiceChannel.leave(); }); });