diff --git a/utils/commands.py b/utils/commands.py index dd75c7f..68bb55a 100644 --- a/utils/commands.py +++ b/utils/commands.py @@ -585,7 +585,8 @@ async def roulette(bot:object, *option:str) -> str: if not drum: await bot.send("Inserting a bullet and spinning the drum...") drum.extend(['click']*6) - spin = randrange(0, 6) + for i in range(0, 10): + spin = randrange(0, 6) drum[spin] = 'bang' chamber+=1