fixes to setnick cmd

merge-requests/22/merge
Matthew 2021-03-06 23:30:41 -05:00
parent 0427867cc9
commit 88c31b491c
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@ export default class Setnick extends Command {
constructor(client: Client) { constructor(client: Client) {
super(client); super(client);
this.name = 'setnick'; this.name = 'setnick';
this.description = 'Changes the nickname of a member'; this.description = 'Changes the nickname of a member.';
this.usage = 'setnick <member> [new nickname]'; this.usage = `${this.client.config.prefix}setnick <member> [new nickname]`;
this.permissions = 2; this.permissions = 2;
this.guildOnly = true; this.guildOnly = true;
this.enabled = true; this.enabled = true;