diff --git a/commands/games-mp/chess.js b/commands/games-mp/chess.js index 3c471a60..5ced1e75 100644 --- a/commands/games-mp/chess.js +++ b/commands/games-mp/chess.js @@ -148,7 +148,8 @@ module.exports = class ChessCommand extends Command { return true; }; const now = new Date(); - const turn = await msg.channel.awaitMessages(pickFilter, { + const turn = await msg.channel.awaitMessages({ + filter: pickFilter, max: 1, time: Math.min(userTime, 600000) });