mirror of
https://github.com/musix-org/musix-oss
synced 2024-12-22 21:13:18 +00:00
Update voiceStateUpdate.js
This commit is contained in:
parent
1a5fc5985c
commit
b9f0eb3a96
@ -1,6 +1,7 @@
|
||||
module.exports = {
|
||||
name: 'voiceStateUpdate',
|
||||
async execute(client, oldState, newState) {
|
||||
if (oldState.channel === null) return newState.setSelfDeaf(true);
|
||||
let change = false;
|
||||
const queue = client.queue.get(newState.guild.id);
|
||||
if (!queue) return;
|
||||
@ -17,7 +18,6 @@ module.exports = {
|
||||
queue.connection = newState.connection;
|
||||
}
|
||||
}
|
||||
if (oldState.channel === null) return;
|
||||
if (oldState.channel.members.size === 1 && oldState.channel === queue.voiceChannel || change) {
|
||||
setTimeout(() => {
|
||||
if (!queue) return;
|
||||
|
Loading…
Reference in New Issue
Block a user