Skip to content

Commit

Permalink
changed wording
Browse files Browse the repository at this point in the history
  • Loading branch information
spinerak committed Sep 27, 2024
1 parent 1bca9cc commit 22c8115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/yachtdice/Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 22c8115

Please sign in to comment.