diff --git a/commands/games-mp/dots-and-boxes.js b/commands/games-mp/dots-and-boxes.js index 86424cd2..af6794ea 100644 --- a/commands/games-mp/dots-and-boxes.js +++ b/commands/games-mp/dots-and-boxes.js @@ -106,7 +106,9 @@ module.exports = class DotsAndBoxesCommand extends Command { if (userTurn) userOwned.push(newSquare); else oppoOwned.push(newSquare); } - await msg.say(`${user}, great job! Keep going until you can\'t make any more!`); + if (taken.length < 24) { + await msg.say(`${user}, great job! Keep going until you can\'t make any more!`); + } } else { userTurn = !userTurn; }