Fix the number generator

The number generator disproportionately favors digits 1-5 over 6. This
fixes it using random's randint() function and the SystemRandom class.
Function numgen() will now always return a list.
This commit is contained in:
2016-11-05 20:40:11 -04:00
parent 50e75be7e8
commit f904ef2e2f
3 changed files with 11 additions and 13 deletions

View File

@@ -17,7 +17,7 @@
from distutils.core import setup
NAME = "Dicekey"
VERSION = "0.2.0-prealpha"
VERSION = "1.2.0-prealpha"
AUTHOR = "Kris Lamoureux"
AUTHOR_EMAIL = "KrisPublicEmail@gmail.com"
URL = "https://github.com/Kris619/Dicekey/"