From a3d15b231c2bd2cf5df835d9f6cb79738b18bec5 Mon Sep 17 00:00:00 2001 From: Hiroyuki Date: Wed, 7 Jul 2021 01:59:57 -0400 Subject: [PATCH] fix: typo in the notify command --- src/commands/notify.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/notify.ts b/src/commands/notify.ts index 74d19a6..cce22a7 100644 --- a/src/commands/notify.ts +++ b/src/commands/notify.ts @@ -43,7 +43,7 @@ export default class Notify extends Command { }); message.delete(); await this.client.util.sendMessageToUserTerminal(account.username, `NOTIFICATION FROM TECHNICIAN: ${args.slice(1).join(' ')}`).catch(() => { }); - return edit.edit(`***${this.client.stores.emojis.success} Send notification to ${account.username}.***`); + return edit.edit(`***${this.client.stores.emojis.success} Sent notification to ${account.username}.***`); } catch (error) { return this.client.util.handleError(error, message, this); }