diff --git a/engine/start.py b/engine/start.py index a0f8919..ebfb30f 100644 --- a/engine/start.py +++ b/engine/start.py @@ -145,8 +145,7 @@ def exitWithMessage(message:str): else: from PyQt5.QtWidgets import QMessageBox #This is the start file for the Qt client so we know at least that Qt is installed and use that for a warning. - QMessageBox.critical(qtApp.desktop(), title, message) - qtApp.quit() + QMessageBox.critical(qtApp.desktop(), title, message) sys.exit(title + ": " + message) def setProcessName(executableName):