diff --git a/modules/dice.py b/modules/dice.py index a6cca7c..d290892 100755 --- a/modules/dice.py +++ b/modules/dice.py @@ -32,7 +32,7 @@ def roll(bot, trigger): results = [] for _ in range(num_dice): - result = random.randint(0, num_sides) + 1 + result = random.randint(1, num_sides) results.append(result) total = sum(results) + modifier