From cc1a4aeb4bb7c98c4eef8ab321375efa6420f989 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 26 Mar 2020 00:37:54 -0400 Subject: [PATCH] Fix --- commands/games-mp/pick-a-number.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-mp/pick-a-number.js b/commands/games-mp/pick-a-number.js index cb68d17c..4ff4f6c9 100644 --- a/commands/games-mp/pick-a-number.js +++ b/commands/games-mp/pick-a-number.js @@ -37,7 +37,7 @@ module.exports = class PickANumberCommand extends Command { } } await msg.say(`${msg.author}, pick a number from 1 to 10.`); - const userTurn = true; + let userTurn = true; let player1Pick; const filter = res => { if (res.author.id !== (userTurn ? msg.author.id : opponent.id)) return false;