From 88c31b491c08089d8f411ae3e1fac4c0de1d5283 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sat, 6 Mar 2021 23:30:41 -0500 Subject: [PATCH] fixes to setnick cmd --- src/commands/setnick.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/setnick.ts b/src/commands/setnick.ts index 0515127..ed87658 100644 --- a/src/commands/setnick.ts +++ b/src/commands/setnick.ts @@ -5,8 +5,8 @@ export default class Setnick extends Command { constructor(client: Client) { super(client); this.name = 'setnick'; - this.description = 'Changes the nickname of a member'; - this.usage = 'setnick [new nickname]'; + this.description = 'Changes the nickname of a member.'; + this.usage = `${this.client.config.prefix}setnick [new nickname]`; this.permissions = 2; this.guildOnly = true; this.enabled = true;