From 180d3d57df373e4f3a65029096daddb00b4b1de9 Mon Sep 17 00:00:00 2001 From: Joe R Date: Wed, 11 Dec 2024 20:45:39 -0500 Subject: [PATCH] Fix mismatched game ID when loading games from the command line --- pysollib/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pysollib/app.py b/pysollib/app.py index fd704b3d..55381012 100644 --- a/pysollib/app.py +++ b/pysollib/app.py @@ -338,6 +338,7 @@ class Application: self.nextgame.loadedgame = tmpgame._loadGame( self.commandline.loadgame, self) self.nextgame.loadedgame.gstats.holded = 0 + self.nextgame.id = self.nextgame.loadedgame.id except Exception: traceback.print_exc() self.nextgame.loadedgame = None