woomy/events/voiceStateUpdate.js
2020-04-22 09:39:46 +02:00

13 lines
No EOL
472 B
JavaScript

// 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');
};
}
}