From cccfc84f4a680733f705011648035d2b5d4c008f Mon Sep 17 00:00:00 2001 From: Kamal Curi Date: Tue, 19 Sep 2023 22:26:15 -0300 Subject: [PATCH] FIX: Bullet will now go to 6th chamber --- utils/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/commands.py b/utils/commands.py index a918f93..7e394ba 100644 --- a/utils/commands.py +++ b/utils/commands.py @@ -581,7 +581,7 @@ async def roulette(bot:object) -> str: if not drum: await bot.send("Inserting a bullet and spinning the drum...") drum.extend(['click']*6) - spin = randrange(0, 5) + spin = randrange(0, 6) drum[spin] = 'bang' chamber+=1 @@ -591,4 +591,4 @@ async def roulette(bot:object) -> str: drum = [] return await bot.send(f"BANG! {bot.author.name} died.") else: - return await bot.send("Click!") \ No newline at end of file + return await bot.send("Click!")