diff --git a/structures/Role.ts b/structures/Role.ts index fd754f7..ac5bb85 100644 --- a/structures/Role.ts +++ b/structures/Role.ts @@ -42,14 +42,9 @@ export class Role implements Model { return `#${this.color.toString(16).padStart(6, '0')}`; } - /* - * delete() { - * return.this.guild.deleteRole(this.id); - * } - * edit() { - * return this.guild.editRole(this.id); - * } - * */ + async delete() { + await this.guild.deleteRole(this.id); + } toString() { switch (this.id) {