From 46b83daf78d6b597f1bcb1da8d80bf65569000cc Mon Sep 17 00:00:00 2001 From: Hiroyuki Date: Wed, 13 Oct 2021 16:18:41 -0400 Subject: [PATCH] refactor: cwg_delete command level Approved by Bsian, AD, FSEN, FSCR, Director of Engineering and NightRaven, AD, FSO, Head of Information Security --- src/commands/cwg_delete.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/cwg_delete.ts b/src/commands/cwg_delete.ts index 12cc9a7..fe42c4d 100644 --- a/src/commands/cwg_delete.ts +++ b/src/commands/cwg_delete.ts @@ -7,9 +7,9 @@ export default class CWG_Delete extends Command { constructor(client: Client) { super(client); this.name = 'delete'; - this.description = 'Unbind a domain to the CWG'; + this.description = 'Unbind a domain from the CWG'; this.usage = `${this.client.config.prefix}cwg delete [Domain | Port]`; - this.permissions = { roles: ['662163685439045632'] }; + this.permissions = { roles: ['662163685439045632', '701454780828221450'] }; this.aliases = ['unbind']; this.enabled = true; }