From d2b060da28cc5b900296a281b51414621594175e Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 21 Nov 2020 20:04:47 -0500 Subject: [PATCH] Fix lint --- commands/edit-image/yu-gi-oh-gen.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/edit-image/yu-gi-oh-gen.js b/commands/edit-image/yu-gi-oh-gen.js index a7a172e5..71611533 100644 --- a/commands/edit-image/yu-gi-oh-gen.js +++ b/commands/edit-image/yu-gi-oh-gen.js @@ -167,7 +167,7 @@ module.exports = class YuGiOhGenCommand extends Command { const filter = res => { if (res.author.id !== msg.author.id) return false; return res.content.toLowerCase() === 'cancel' || monsterTypes.includes(res.content.toLowerCase()); - } + }; const msgs = await msg.channel.awaitMessages(filter, { max: 1, time: 60000 @@ -202,7 +202,7 @@ module.exports = class YuGiOhGenCommand extends Command { const filter = res => { if (res.author.id !== msg.author.id) return false; return res.content.toLowerCase() === 'cancel' || atrs.includes(res.content.toLowerCase()); - } + }; const msgs = await msg.channel.awaitMessages(filter, { max: 1, time: 60000