docs: annotate known 6-card premium pack bug as intentional

The `if` (instead of `elif`) on Card 4's rarity roll gives a bonus
6th card ~10% of the time. Marked as a beloved league feature.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Cal Corum 2026-03-09 11:57:40 -05:00
parent ee80cd72ae
commit 6d00cfe632

View File

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