From 716492be4945e64ad86c2c85d0d7c183a3e22799 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 2 May 2021 08:53:54 -0400 Subject: [PATCH] Fix lol --- commands/games-mp/russian-roulette.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/games-mp/russian-roulette.js b/commands/games-mp/russian-roulette.js index cb819ec4..7ec82510 100644 --- a/commands/games-mp/russian-roulette.js +++ b/commands/games-mp/russian-roulette.js @@ -58,9 +58,9 @@ module.exports = class RussianRouletteCommand extends Command { } else { await msg.say(stripIndents` **${player.tag}** pulls the trigger... **And lives...** - ${opponent.bot ? '' : `Will you take the gun, ${players.get(turn[0]).user}?`} + ${player.bot ? '' : `Will you take the gun, ${players.get(turn[0]).user}?`} `); - if (!opponent.bot) { + if (!player.bot) { let first = true; for (const next of turn) { const nextPlayer = players.get(next);