forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-02-04 17:50:36 +02:00
parent 51a45b5a42
commit e7e63bd1d1
1 changed files with 2 additions and 2 deletions

View File

@ -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: