From 4f1e3da70a5007dc0dbcabb9b2c4f2f73248d938 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Fri, 2 Sep 2022 19:48:43 -0700 Subject: [PATCH] Remove splash screen delay. This has been in for a long time, so people will have seen the message by now (and it's on our GitHub page). --- qt_ui/main.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/qt_ui/main.py b/qt_ui/main.py index ce32d014..008153e4 100644 --- a/qt_ui/main.py +++ b/qt_ui/main.py @@ -103,11 +103,6 @@ def run_ui(game: Game | None, dev: bool) -> None: splash = QSplashScreen(pixmap) splash.show() - # Developers are launching the game in a loop hundreds of times. We've read it. - if not dev: - # Give enough time to read splash screen - time.sleep(3) - # Once splash screen is up : load resources & setup stuff uiconstants.load_icons() uiconstants.load_event_icons()