diff --git a/commands/games-mp/russian-roulette.js b/commands/games-mp/russian-roulette.js index 87010324..b6acfa32 100644 --- a/commands/games-mp/russian-roulette.js +++ b/commands/games-mp/russian-roulette.js @@ -64,6 +64,7 @@ module.exports = class RussianRouletteCommand extends Command { `); if (!nextUp.bot) { let first = true; + /* eslint-disable max-depth */ for (const next of turn) { const nextPlayer = players.get(next); if (!first) { @@ -78,6 +79,7 @@ module.exports = class RussianRouletteCommand extends Command { players.delete(next); removeFromArray(turn, next); } + /* eslint-enable max-depth */ } if (players.size === 1) winner = players.first(); round++;