📝 Fix event messages example

Closes #54
This commit is contained in:
Androz2091 2020-07-23 14:09:20 +02:00
parent e3e5181deb
commit b5265d2130

View file

@ -109,7 +109,7 @@ You need to **init the guild queue using the play() function**, then you are abl
await client.player.play(message.member.voice.channel, "Despacito")
// Then add some messages that will be sent when the events will be triggered
client.player.getQueue(guildID)
client.player.getQueue(message.guild.id)
.on('end', () => {
message.channel.send('There is no more music in the queue!');
})