From 2b37310b8a2274ab04d044bd2b6558f353f00dfb Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 9 Apr 2020 18:38:31 -0400 Subject: [PATCH] Fix --- commands/games-mp/dots-and-boxes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-mp/dots-and-boxes.js b/commands/games-mp/dots-and-boxes.js index 6828b7f5..535c5050 100644 --- a/commands/games-mp/dots-and-boxes.js +++ b/commands/games-mp/dots-and-boxes.js @@ -106,7 +106,7 @@ module.exports = class DotsAndBoxesCommand extends Command { if (userTurn) userOwned.push(newSquare); else oppoOwned.push(newSquare); } - if (taken.length < 24) { + if (taken.length < 40) { await msg.say(`${user}, great job! Keep going until you can\'t make any more!`); } } else {