1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Fix mismatched game ID when loading games from the command line

This commit is contained in:
Joe R 2024-12-11 20:45:39 -05:00
parent 5d9b462304
commit 180d3d57df

View file

@ -338,6 +338,7 @@ class Application:
self.nextgame.loadedgame = tmpgame._loadGame( self.nextgame.loadedgame = tmpgame._loadGame(
self.commandline.loadgame, self) self.commandline.loadgame, self)
self.nextgame.loadedgame.gstats.holded = 0 self.nextgame.loadedgame.gstats.holded = 0
self.nextgame.id = self.nextgame.loadedgame.id
except Exception: except Exception:
traceback.print_exc() traceback.print_exc()
self.nextgame.loadedgame = None self.nextgame.loadedgame = None