From 83d59bb59ccdf844a966386d36bad607bf7f8072 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 23 Jan 2021 22:02:14 -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 01f44584..001683ed 100644 --- a/commands/games-mp/chess.js +++ b/commands/games-mp/chess.js @@ -67,7 +67,7 @@ module.exports = class ChessCommand extends Command { let blackPlayer = opponent; if (resumeGame) { await msg.reply('You have a saved game, do you want to resume it?'); - const verification = await verify(msg.channel, opponent); + const verification = await verify(msg.channel, msg.author); if (verification) { const data = JSON.parse(resumeGame); game = new jsChess.Game(resumeGame.fen);