From 8b7c9b253c16f6cabacd7517b00b890026478807 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 24 Jan 2021 10:15:40 -0500 Subject: [PATCH] Fix --- commands/games-mp/domineering.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-mp/domineering.js b/commands/games-mp/domineering.js index f1a780e8..eb8492d2 100644 --- a/commands/games-mp/domineering.js +++ b/commands/games-mp/domineering.js @@ -122,7 +122,7 @@ module.exports = class DomineeringCommand extends Command { if (userTurn && !board[i + 1]) continue; if (!userTurn && board[i][j + 1] === undefined) continue; if (board[userTurn ? i + 1 : i][userTurn ? j : j + 1]) continue; - possibleMoves.push(`${i},${j}`); + possibleMoves.push(`${j},${i}`); } } return possibleMoves;