diff --git a/files/classes/treasure.py b/files/classes/treasure.py index f6deff814..395c96cea 100644 --- a/files/classes/treasure.py +++ b/files/classes/treasure.py @@ -12,8 +12,8 @@ class Treasure: def check_for_treasure(self, in_text, from_comment): if '!slots' not in in_text and '!blackjack' not in in_text: seed = random.randint(1, 1000) - is_special = seed == 1000 # 0.1% chance - is_standard = seed >= 990 # 1.0% chance + is_special = seed == 1000 + is_standard = seed >= 990 amount = 0 if is_special: