1 |
import { Guild, GuildMember } from "discord.js"; |
2 |
import DiscordClient from "../client/Client"; |
3 |
|
4 |
export default async function autoRole(client: DiscordClient, member: GuildMember) { |
5 |
const config = client.config.props[member.guild!.id].autorole; |
6 |
|
7 |
if (config.enabled) { |
8 |
for await (const roleID of config.roles) { |
9 |
try { |
10 |
const role = await member.guild.roles.fetch(roleID); |
11 |
|
12 |
if (role) { |
13 |
await member.roles.add(role); |
14 |
} |
15 |
} |
16 |
catch (e) { |
17 |
console.log(e); |
18 |
} |
19 |
} |
20 |
} |
21 |
}; |