From e5346784948d6b8d5fae8bc5760d3dd31e691689 Mon Sep 17 00:00:00 2001 From: putschgi Date: Wed, 2 Jul 2025 14:16:26 +0200 Subject: [PATCH] main.py aktualisiert --- main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.py b/main.py index 507148a..7242572 100644 --- a/main.py +++ b/main.py @@ -572,11 +572,13 @@ async def show_game_over(score): query = js.window.location.search params = urllib.parse.parse_qs(query[1:]) username = params.get("name", ["Spieler"])[0] + uid = params.get("code", ["001"])[0] except Exception: pass data = { "name": username, + "uid": uid, "score": int(score), "api_key": "hag-trailer-8051" }