1
0
Fork 0
mirror of synced 2024-06-26 18:20:50 +12:00

GameLaunchHelper: actually exit when game has finished

This commit is contained in:
loathingKernel 2022-09-16 17:33:26 +03:00
parent 997a8aeb18
commit 2f5da4e628

View file

@ -208,7 +208,9 @@ class GameProcessApp(RareApp):
self.server.deleteLater()
except RuntimeError:
pass
self.exit_app.emit()
self.processEvents()
if not self.console:
self.exit()
def start_game(args: Namespace):