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);