diff --git a/commands/games-mp/nim.js b/commands/games-mp/nim.js index 8793ce2f..5fd4965d 100644 --- a/commands/games-mp/nim.js +++ b/commands/games-mp/nim.js @@ -98,7 +98,7 @@ module.exports = class NimCommand extends Command { const chosen = res.content; if (chosen.toLowerCase() === 'end' || chosen.toLowerCase() === 'back') return true; const i = Number.parseInt(chosen, 10) - 1; - return row >= i && row > 0; + return i <= row && i > 0; }; const rowTurn = await msg.channel.awaitMessages(rowFilter, { max: 1,