From af32030a90fb43de58ab9211c2ea89b163d5dc95 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 11 Nov 2019 23:13:34 -0500 Subject: [PATCH] Show remaining bullets --- commands/games/russian-roulette.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games/russian-roulette.js b/commands/games/russian-roulette.js index 17dc826f..71d09c42 100644 --- a/commands/games/russian-roulette.js +++ b/commands/games/russian-roulette.js @@ -44,7 +44,7 @@ module.exports = class RussianRouletteCommand extends Command { const notPlayer = userTurn ? msg.author : opponent; await msg.say(stripIndents` **${player.tag}** pulls the trigger... **And ${gun[round] ? 'dies!**' : 'lives...**'} - ${opponent.bot ? 'Continue?' : `Will you take the gun, ${notPlayer}?`} + ${opponent.bot ? 'Continue?' : `Will you take the gun, ${notPlayer}?`} (${8 - round - 1} bullets left) `); if (gun[round]) { winner = notPlayer;