From 3045d3ebd57be1b2a0c77ee7f319fd8f0b6dea06 Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Wed, 18 Mar 2026 18:09:08 +0100 Subject: [PATCH] :goat: --- backend/card.py | 1 + backend/main.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/card.py b/backend/card.py index 7d33e71..cf2f0e5 100644 --- a/backend/card.py +++ b/backend/card.py @@ -141,6 +141,7 @@ WIKIDATA_INSTANCE_TYPE_MAP = { "Q23442": CardType.location, # island "Q82794": CardType.location, # geographic region "Q34442": CardType.location, # road + "Q192611": CardType.location, # electoral unit "Q398141": CardType.location, # school district "Q133056": CardType.location, # mountain pass "Q3624078": CardType.location, # sovereign state diff --git a/backend/main.py b/backend/main.py index 580f4f9..5254d9f 100644 --- a/backend/main.py +++ b/backend/main.py @@ -456,7 +456,6 @@ async def start_solo_game(deck_id: str, user: UserModel = Depends(get_current_us for card in ai_cards: db.delete(card) - deck.times_played += 1 db.commit() game_id = create_solo_game(str(user.id), user.username, player_cards, ai_cards, deck_id)