Merge pull request #431 from Henryskio/main

Fix: allow protonfixes for steam games
This commit is contained in:
Faugus
2026-02-05 12:03:08 -03:00
committed by GitHub

View File

@@ -119,7 +119,7 @@ class FaugusRun:
set_env("PROTONPATH", f"{self.default_runner}")
if os.environ.get("GAMEID") != "winetricks-gui":
if "umu" not in os.environ.get("GAMEID", ""):
if "umu" not in os.environ.get("GAMEID", "") and not (os.environ.get("GAMEID", "").isnumeric()):
set_env("PROTONFIXES_DISABLE", "1")
protonpath = os.environ.get("PROTONPATH")