diff --git a/helpers/main.py b/helpers/main.py index 3662116..9823183 100644 --- a/helpers/main.py +++ b/helpers/main.py @@ -752,7 +752,9 @@ async def roll_for_cards(all_packs: list, extra_val=None) -> list: d_1000 = random.randint(1, 1000) if d_1000 <= 100: counts["Rep"]["count"] += 1 - if d_1000 <= 530: + if ( + d_1000 <= 530 + ): # Known bug: should be elif — gives a bonus 6th card ~10% of the time. Do not fix. counts["Res"]["count"] += 1 elif d_1000 <= 930: counts["Sta"]["count"] += 1