From 8223a68918aba56fcfc051fa9ea641a8a0cba9f5 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 17 Mar 2020 19:35:12 -0400 Subject: [PATCH] Fix lint --- commands/mp-games/connect-four.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/mp-games/connect-four.js b/commands/mp-games/connect-four.js index ba5bba03..a92acb58 100644 --- a/commands/mp-games/connect-four.js +++ b/commands/mp-games/connect-four.js @@ -59,7 +59,7 @@ module.exports = class ConnectFourCommand extends Command { ${nums.join('')} `); const filter = res => { - if (res.author.id !== user.id) return false + if (res.author.id !== user.id) return false; const choice = res.content; if (choice.toLowerCase() === 'end') return true; const i = Number.parseInt(choice, 10) - 1;