voice chat leave detection

This commit is contained in:
Lukáš H 2020-04-22 09:39:46 +02:00
parent 4d97bc1ad0
commit 69815dbdf2
No known key found for this signature in database
GPG Key ID: E07D6630DBC17195
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// Copyright 2020 Emily J. / mudkipscience and contributors. Subject to the AGPLv3 license.
const music = require('../utils/music');
module.exports = (client, oldState, newState) => {
if(newState.channelID != oldState.channelID) {
let guild = music.getGuild(newState.guild.id);
if(guild.playing && guild.voiceChannel.id == oldState.channelID) {
console.log(newState.id + ' left VC, in which Woomy is playing music');
};
}
}