Skip to content

Commit

Permalink
[Fix] Corrected log message
Browse files Browse the repository at this point in the history
  • Loading branch information
naseif committed Sep 30, 2021
1 parent e352182 commit 2f0ae34
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion playerEvents/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ module.exports.playerEvents = (player) => {
logger(`${queue.guild.name} Disconnected from Channel`);
});
player.on("channelEmpty", (queue) => {
logger(`${queue.guild.name}: Voice channel is empty right now!`);
logger(
`${queue.guild.name}: Voice channel is empty right now!, leaving the Channel`
);
});
player.on("connectionCreate", (queue, connection) => {
logger(
Expand Down

0 comments on commit 2f0ae34

Please sign in to comment.