diff --git a/events/voiceStateUpdate.js b/events/voiceStateUpdate.js new file mode 100644 index 0000000..c8118e0 --- /dev/null +++ b/events/voiceStateUpdate.js @@ -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'); + }; + } +} \ No newline at end of file