onVoiceStateUpdate
1client.voiceStateUpdateCommand({2    name: "Voice State Update",3    channel: "$channelId",4    code: `5        $log[$authorId just joined $newState[id]!]6    `7});1module.exports = {2    name: "Voice State Update",3    channel: "$channelId",4    type: "voiceStateUpdate",5    code: `6        $log[$authorId just joined $newState[id]!]7    `8};