forked from Supositware/Haha-Yes
toLowerCase()
This commit is contained in:
parent
1a859350ce
commit
92204910f8
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ class TagCommand extends Command {
|
|||
message.channel.awaitMessages(filter, {time: 5000, max: 1, errors: ['time'] })
|
||||
.then(async messages => {
|
||||
let messageContent = messages.map(messages => messages.content);
|
||||
if (messageContent == 'y' || messageContent == 'yes') {
|
||||
if (messageContent.tolowerCase() == 'y' || messageContent.tolowerCase() == 'yes') {
|
||||
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}});
|
||||
return message.channel.send(`tag have been set to ${args.trigger} : ${args.response}`);
|
||||
|
|
Loading…
Reference in a new issue