refactor: cwg_delete command level

Approved by Bsian, AD, FSEN, FSCR, Director of Engineering and NightRaven, AD, FSO, Head of Information Security
pull/15/head
Hiroyuki 2021-10-13 16:18:41 -04:00
parent 7e20b362c3
commit 46b83daf78
No known key found for this signature in database
GPG Key ID: AF65958B7B7362E6
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}