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?'); }