From 762ea9a9b95deed562c172f7bb53a4b29a2ce463 Mon Sep 17 00:00:00 2001 From: Henrysk Date: Wed, 4 Feb 2026 22:47:09 +0100 Subject: [PATCH] fix: allow protonfixes for steam games --- faugus_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/faugus_run.py b/faugus_run.py index d31d0a2..6dedee1 100644 --- a/faugus_run.py +++ b/faugus_run.py @@ -118,7 +118,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")