From d96a432f5d885318059b6eec251b15eb8a283b58 Mon Sep 17 00:00:00 2001 From: Androz2091 Date: Sat, 7 Aug 2021 19:16:11 +0200 Subject: [PATCH] :bug: Fix discord-player import path for example bot --- example/music-bot/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/music-bot/index.js b/example/music-bot/index.js index c6abed3..dea4277 100644 --- a/example/music-bot/index.js +++ b/example/music-bot/index.js @@ -1,6 +1,6 @@ const { Client, GuildMember } = require("discord.js"); const config = require("./config"); -const { Player, QueryType, QueueRepeatMode } = require("../../"); +const { Player, QueryType, QueueRepeatMode } = require("discord-player"); const client = new Client({ intents: ["GUILD_VOICE_STATES", "GUILD_MESSAGES", "GUILDS"]