From 8e1418b58ff9588d309990821cd99a56229a185d Mon Sep 17 00:00:00 2001 From: JonnyBro Date: Sun, 26 Dec 2021 17:12:03 +0500 Subject: [PATCH] no await --- commands/Music/play.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/Music/play.js b/commands/Music/play.js index b315454e..7193fea3 100644 --- a/commands/Music/play.js +++ b/commands/Music/play.js @@ -28,7 +28,7 @@ class Play extends Command { if (!perms.has("CONNECT") || !perms.has("SPEAK")) return message.error("music/play:VOICE_CHANNEL_CONNECT"); try { - await this.client.player.play(message, args.join(" ")); + this.client.player.play(message, args.join(" ")); } catch (e) { message.error("music/play:ERR_OCCURRED", { error: e }); console.error(e);