From 83519d832ab7ded10ee9efefe5779ad403220f2a Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 24 Jan 2021 10:19:26 -0500 Subject: [PATCH] Fix lint --- 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 a2651bad..2f3935d1 100644 --- a/commands/games-mp/domineering.js +++ b/commands/games-mp/domineering.js @@ -149,7 +149,7 @@ module.exports = class DomineeringCommand extends Command { str += '\n'; for (let i = 0; i < board.length; i++) { str += nums[i]; - board[i].forEach((item, j) => { + board[i].forEach(item => { if (item === 'U') str += userColor; else if (item === 'O') str += oppoColor; else str += blankEmoji;