Fix KeyError: 'human' in gauntlet-9 CARDSETS

Added missing 'human' key to gauntlet-9 cardset configuration.
This was causing 500 errors when players tried to start gauntlet
games because the legal-check endpoint couldn't validate cards.

Error: KeyError: 'human' at app/routers_v2/cards.py:242
when checking CARDSETS[rarity_name]['human']

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Cal Corum 2026-02-04 08:47:21 -06:00
parent 40c512c665
commit b8a6c6bd2c

View File

@ -116,6 +116,7 @@ CARDSETS = {
"gauntlet-9": { "gauntlet-9": {
"primary": [27], # 2005 "primary": [27], # 2005
"secondary": [24], # 2025 "secondary": [24], # 2025
"human": [x for x in range(1, 30)],
}, },
} }