From 0aea3e7fbfdbe172e07983b9b23b601f821495df Mon Sep 17 00:00:00 2001 From: GloriousEggroll Date: Sun, 20 Oct 2024 21:29:01 -0600 Subject: [PATCH] dont set PROTON_VERB for createprefix or winetricks, let the client do that --- umu/umu_run.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/umu/umu_run.py b/umu/umu_run.py index fef85b070..a0082306a 100755 --- a/umu/umu_run.py +++ b/umu/umu_run.py @@ -225,7 +225,6 @@ def set_env( if is_createpfx: env["EXE"] = "" env["STEAM_COMPAT_INSTALL_PATH"] = "" - env["PROTON_VERB"] = "run" elif is_winetricks: # Make an absolute path to winetricks within GE-Proton or UMU-Proton. # The launcher will change to the winetricks parent directory before @@ -236,7 +235,6 @@ def set_env( env["EXE"] = str(exe) args = (env["EXE"], args[1]) # type: ignore env["STEAM_COMPAT_INSTALL_PATH"] = str(exe.parent) - env["PROTON_VERB"] = "run" elif is_cmd: try: # Ensure executable path is absolute, otherwise Proton will fail