diff --git a/worlds/yachtdice/Rules.py b/worlds/yachtdice/Rules.py index 9c0674bc2609..804e8c22085b 100644 --- a/worlds/yachtdice/Rules.py +++ b/worlds/yachtdice/Rules.py @@ -20,7 +20,7 @@ class Category: def __init__(self, name, quantity=1): self.name = name - self.quantity = min(quantity, 20) # how many times you have the category, limit to 20 to avoid int overflow + self.quantity = min(quantity, 20) # how many times you have the category, max 20 to avoid score overflow # return mean score of a category def mean_score(self, num_dice, num_rolls):