This commit is contained in:
2024-08-09 17:13:41 +00:00
parent 6a3c617275
commit 48b04a50df
4 changed files with 13 additions and 12 deletions

View File

@@ -17,7 +17,7 @@ function isRole(role: Role | APIRole): role is Role {
return role['id'] !== null;
}
class Autorole extends Command{
class ApplyRole extends Command{
get name(){return "applyrole";}
get description(){return "Apply roles to every member. (Note. up to 1000 members)";}
async execute(interaction: CommandInteraction): Promise<void>{
@@ -75,4 +75,4 @@ class Autorole extends Command{
}
};
export const command = new Autorole();
export const command = new ApplyRole();