From 03edaee3684e1d4fe890380b6a0efc1a089e3ab8 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 29 Jan 2021 16:37:28 -0500 Subject: [PATCH] Fix --- commands/games-mp/chess.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-mp/chess.js b/commands/games-mp/chess.js index f1992ac5..dd948545 100644 --- a/commands/games-mp/chess.js +++ b/commands/games-mp/chess.js @@ -107,7 +107,7 @@ module.exports = class ChessCommand extends Command { You can save your game by typing \`save\`. _You are ${gameState.check ? '**in check!**' : 'not in check.'}_ - **Time Remaining: ${moment.duration(time).format()}** (Max 10min per turn) + **Time Remaining: ${moment.duration(userTime).format()}** (Max 10min per turn) `, { files: [{ attachment: this.displayBoard(gameState, prevPieces), name: 'chess.png' }] }); prevPieces = Object.assign({}, game.exportJson().pieces); const moves = game.moves();