33 |
this.joins++; |
this.joins++; |
34 |
|
|
35 |
if (this.joins >= this.maxJoins) { |
if (this.joins >= this.maxJoins) { |
36 |
let role = member.guild.roles.cache.find(r => r.id === app.config.props[member.guild.id].gen_role); |
let role = member.guild.roles.everyone; |
37 |
let channels = member.guild.channels.cache.filter(channel => this.excluded.indexOf(channel.id) === -1 && this.excluded.indexOf(channel.parent?.id) === -1 && channel.type === 'GUILD_TEXT'); |
let channels = member.guild.channels.cache.filter(channel => this.excluded.indexOf(channel.id) === -1 && this.excluded.indexOf(channel.parent?.id) === -1 && channel.type === 'GUILD_TEXT'); |
38 |
|
|
39 |
await lockAll(role, channels, true); |
await lockAll(role, channels, true); |