From be1e85841fd690394fa402ae283d206a4f91a38c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Bersier?= Date: Tue, 9 Jul 2019 01:52:51 +0200 Subject: [PATCH] fixed horrible typo --- commands/admin/untag.js | 2 +- commands/owner/removeResponse.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/admin/untag.js b/commands/admin/untag.js index 1a61599e..f5be06aa 100644 --- a/commands/admin/untag.js +++ b/commands/admin/untag.js @@ -30,7 +30,7 @@ class UnTagCommand extends Command { const tag = await Tag.findOne({where: {trigger: args.trigger, serverID: message.guild.id}}); if (tag) { Tag.destroy({where: {trigger: args.trigger, serverID: message.guild.id}}); - return message.channel.send('Sucesffuly deleted the following tag: ' + args.trigger); + return message.channel.send('successfully deleted the following tag: ' + args.trigger); } else { return message.channel.send('Did not find the specified tag, are you sure it exist?'); } diff --git a/commands/owner/removeResponse.js b/commands/owner/removeResponse.js index 24c94851..e9ebd0c9 100644 --- a/commands/owner/removeResponse.js +++ b/commands/owner/removeResponse.js @@ -31,7 +31,7 @@ class removeResponseCommand extends Command { const autoresponse = await autoResponse.findOne({where: {trigger: args.trigger}}); if (autoresponse) { autoResponse.destroy({where: {trigger: args.trigger}}); - return message.channel.send('Sucesffuly deleted the following autoresponse: ' + args.trigger); + return message.channel.send('successfully deleted the following autoresponse: ' + args.trigger); } else { return message.channel.send('Did not find the specified autoresponse, are you sure it exist?'); }