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;