Fixes random seed required value

This commit is contained in:
2022-12-18 02:03:09 +01:00
parent 1c3318c24c
commit ad2324d53c
+1 -1
View File
@@ -411,7 +411,7 @@ class Shitpost(commands.Cog):
return None
# Do the rolling
random.seed(datetime.now())
random.seed(datetime.now().timestamp())
total = 0
rolls = []
for x in range(0, nrOfDice):