From 59258258c4a196c9b985f3f0f09305f14698d089 Mon Sep 17 00:00:00 2001 From: Matteo Benedetto Date: Thu, 21 Aug 2025 18:31:09 +0200 Subject: [PATCH] Update API URL in UserProfileIntegration constructor --- engine/user_profile_integration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/user_profile_integration.py b/engine/user_profile_integration.py index 63c540c..61061d4 100644 --- a/engine/user_profile_integration.py +++ b/engine/user_profile_integration.py @@ -15,7 +15,7 @@ from engine.score_api_client import ScoreAPIClient class UserProfileIntegration: """Integration layer between the game and profile system""" - def __init__(self, profiles_file="user_profiles.json", api_url="http://localhost:8000"): + def __init__(self, profiles_file="user_profiles.json", api_url="http://172.27.23.245:8000"): self.profiles_file = profiles_file self.current_profile = None self.device_id = self.generate_device_id()