use new .env global
This commit is contained in:
parent
3b9617d874
commit
57582933ca
@ -40,10 +40,10 @@ client.on("interactionCreate", async(interaction) => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
client.on('voiceStateUpdate', (oldState, newState) => {
|
client.on('voiceStateUpdate', (oldState, newState) => {
|
||||||
if(newState.channelId === '919971427673849947') {
|
if(newState.channelId === process.env.CHANNEL_ID) {
|
||||||
newState.guild.channels.create(`${newState.member.displayName}'s VC`, {
|
newState.guild.channels.create(`${newState.member.displayName}'s VC`, {
|
||||||
type: 'GUILD_VOICE',
|
type: 'GUILD_VOICE',
|
||||||
parent: '589107550520082591',
|
parent: process.env.PARENT_CHANNEL_ID,
|
||||||
permissionOverwrites: [{
|
permissionOverwrites: [{
|
||||||
id: newState.member.user,
|
id: newState.member.user,
|
||||||
allow: ["MANAGE_CHANNELS"]
|
allow: ["MANAGE_CHANNELS"]
|
||||||
@ -53,8 +53,8 @@ client.on('voiceStateUpdate', (oldState, newState) => {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
if(oldState.channelId != null) {
|
if(oldState.channelId != null) {
|
||||||
if(oldState.channel.parentId == '589107550520082591') {
|
if(oldState.channel.parentId == process.env.PARENT_CHANNEL_ID) {
|
||||||
if(oldState.channelId != '919971427673849947') {
|
if(oldState.channelId != process.env.CHANNEL_ID) {
|
||||||
if(oldState.channel.members.size == 0) {
|
if(oldState.channel.members.size == 0) {
|
||||||
oldState.channel.delete('Delete empty Channel.')
|
oldState.channel.delete('Delete empty Channel.')
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user