1
0
Fork 0
mirror of synced 2024-06-02 10:44:32 +12:00

Corrected syntax error

This commit is contained in:
Phxntxm 2017-03-05 20:51:50 -06:00
parent 4f3c05486a
commit 0757844905

View file

@ -343,7 +343,7 @@ class Core:
await self.bot.say("A {} sided die? You know that's impossible right?".format(num))
return
nums = [random.SystemRandom().randint(1, num)) for i in range(0, int(dice))]
nums = [random.SystemRandom().randint(1, num) for i in range(0, int(dice))]
total = sum(nums)
value_str = ", ".join("{}".format(x) for x in nums)