diff --git a/modules/dice.py b/modules/dice.py index 51752aa9..69485b6d 100644 --- a/modules/dice.py +++ b/modules/dice.py @@ -18,7 +18,7 @@ class Module(ModuleManager.BaseModule): count_n = min(5, int(count)) sides_n = min(20, int(sides)) - reults = random.choices(range(1, sides_n), k=count_n) + results = random.choices(range(1, sides_n), k=count_n) total_n = sum(results) total = ""