From dd6bd2244430ca9d7641c0bb3b4fec78588ede87 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 9 Jan 2021 13:18:24 -0500 Subject: [PATCH] Add final move --- commands/games-mp/connect-four.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/games-mp/connect-four.js b/commands/games-mp/connect-four.js index fdda2ea0..3831ed96 100644 --- a/commands/games-mp/connect-four.js +++ b/commands/games-mp/connect-four.js @@ -134,6 +134,7 @@ module.exports = class ConnectFourCommand extends Command { if (winner === 'time') return msg.say('Game ended due to inactivity.'); return msg.say(stripIndents` ${winner ? `Congrats, ${winner}!` : 'Looks like it\'s a draw...'} + Final Move: **${lastMove}** ${this.displayBoard(board, playerOneEmoji, playerTwoEmoji)} ${nums.join('')}