diff --git a/commands/games/russian-roulette.js b/commands/games/russian-roulette.js index 1e0a4892..0f90925f 100644 --- a/commands/games/russian-roulette.js +++ b/commands/games/russian-roulette.js @@ -41,7 +41,7 @@ module.exports = class RussianRouletteCommand extends Command { let winner = null; while (!winner) { const player = userTurn ? msg.author : opponent; - const notPlayer = userTurn ? msg.author : opponent; + const notPlayer = userTurn ? opponent : msg.author; if (gun[round]) { await msg.say(`**${player.tag}** pulls the trigger... **And dies!**`); winner = notPlayer;