forked from Supositware/Haha-Yes
fix for updating tag
This commit is contained in:
parent
20f96b57ca
commit
26871e0922
1 changed files with 2 additions and 2 deletions
|
@ -45,8 +45,8 @@ class TagCommand extends Command {
|
||||||
const filter = m => m.content && m.author.id == message.author.id;
|
const filter = m => m.content && m.author.id == message.author.id;
|
||||||
message.channel.awaitMessages(filter, {time: 5000, max: 1, errors: ['time'] })
|
message.channel.awaitMessages(filter, {time: 5000, max: 1, errors: ['time'] })
|
||||||
.then(async messages => {
|
.then(async messages => {
|
||||||
let messageContent = messages.map(messages => messages.content);
|
let messageContent = messages.map(messages => messages.content.tolowerCase());
|
||||||
if (messageContent.tolowerCase() == 'y' || messageContent.tolowerCase() == 'yes') {
|
if (messageContent == 'y' || messageContent == 'yes') {
|
||||||
const body = {trigger: args.trigger, response: args.response, ownerID: message.author.id, serverID: message.guild.id};
|
const body = {trigger: args.trigger, response: args.response, ownerID: message.author.id, serverID: message.guild.id};
|
||||||
await Tag.update(body, {where: {trigger: args.trigger, serverID: message.guild.id}});
|
await Tag.update(body, {where: {trigger: args.trigger, serverID: message.guild.id}});
|
||||||
return message.channel.send(`tag have been set to ${args.trigger} : ${args.response}`);
|
return message.channel.send(`tag have been set to ${args.trigger} : ${args.response}`);
|
||||||
|
|
Loading…
Reference in a new issue