diff --git a/commands/admin/tag.js b/commands/admin/tag.js index de71fae4..70254e2d 100644 --- a/commands/admin/tag.js +++ b/commands/admin/tag.js @@ -48,7 +48,7 @@ class TagCommand extends Command { let messageContent = messages.map(messages => messages.content); if (messageContent == 'y' || messageContent == 'yes') { const body = {trigger: args.trigger, response: args.response, ownerID: message.author.id, serverID: message.guild.id}; - Tag.update(body, {where: {trigger: args.trogger, serverID: message.guild.id}}); + Tag.update(body, {where: {trigger: args.trigger, serverID: message.guild.id}}); return message.channel.send(`tag have been set to ${args.trigger} : ${args.response}`); } }) diff --git a/commands/owner/addResponse.js b/commands/owner/addResponse.js index 0dc5fc14..8cddc99d 100644 --- a/commands/owner/addResponse.js +++ b/commands/owner/addResponse.js @@ -55,7 +55,7 @@ class addResponseCommand extends Command { let messageContent = messages.map(messages => messages.content); if (messageContent == 'y' || messageContent == 'yes') { const body = {trigger: args.trigger, response: args.response, type: args.type}; - autoResponse.update(body, {where: {trigger: args.triggers}}); + autoResponse.update(body, {where: {trigger: args.trigger}}); return message.channel.send(`autoresponse have been set to ${args.trigger} : ${args.response} with type: ${args.type}`); } })