From 22c81154511fd17e4c04ee2db6825e94bc9555ac Mon Sep 17 00:00:00 2001 From: spinerak Date: Fri, 27 Sep 2024 23:09:35 +0200 Subject: [PATCH] changed wording --- worlds/yachtdice/Rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):