fixed again the same thing

This commit is contained in:
Nix 2024-08-25 00:50:15 -03:00 committed by GitHub
parent 7917dd0a7b
commit ea252215f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -331,10 +331,10 @@ class PicomcVersionSelector(QWidget):
def run_game(self, selected_instance):
try:
subprocess.run(['picomc', 'play', selected_instance], check=True)
# Update lastplayed field in config.json on a separate thread
update_thread = threading.Thread(target=self.update_last_played, args=(selected_instance,))
update_thread.start()
subprocess.run(['picomc', 'play', selected_instance], check=True)
except subprocess.CalledProcessError as e:
error_message = f"Error playing {selected_instance}: {e}"
logging.error(error_message)