Maintence

This commit is contained in:
2026-08-22 16:15:01 -04:00
parent 60a673e1cf
commit a0b7dd5338
5 changed files with 10 additions and 3 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ client.once(Events.ClientReady, async (readyClient) => {
});
client.on("guildMemberAdd", async (guildMember) => {
await roleService.addStarterRoles(guildMember);
await roleService.giveStarterRoles(guildMember);
});
client.on("messageCreate", async (message) => {
+1 -1
View File
@@ -27,7 +27,7 @@ export default class RoleService {
});
}
async addStarterRoles(guildMember: GuildMember) {
async giveStarterRoles(guildMember: GuildMember) {
for (const starterRole of this.starterRoles) {
const role = this.getRoleByName(guildMember.guild, starterRole);
if (!role) continue;