From 2178167fa7927f343ed81ed6bd18bc723b84d378 Mon Sep 17 00:00:00 2001 From: Amund Eggen Svandal Date: Fri, 13 Sep 2024 20:06:20 +0200 Subject: [PATCH] fix: Give Hypixel some more time to update our stats Feel like we sometimes get stuck with stale stats in the discord status. Trying this to see if it maybe helps? --- src/prism/overlay/rich_presence.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prism/overlay/rich_presence.py b/src/prism/overlay/rich_presence.py index 204c1b64..1b4fa734 100644 --- a/src/prism/overlay/rich_presence.py +++ b/src/prism/overlay/rich_presence.py @@ -119,7 +119,7 @@ def run(self) -> None: self.time_since_game_end = 15 # Wait a bit to let Hypixel update the stats in the API - time.sleep(1) + time.sleep(5) self.update_session_presence() time.sleep(15)