From 775f582ea66893b09c7885161342ae6cdaee0d7c Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Wed, 10 Jun 2026 05:27:39 +0900 Subject: [PATCH] fix: drop extraneous arg --- dzgui/api/steam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dzgui/api/steam.py b/dzgui/api/steam.py index b322f76..b773a57 100644 --- a/dzgui/api/steam.py +++ b/dzgui/api/steam.py @@ -162,7 +162,7 @@ def load_to_menu(client: str, appid: int, name: str, mods: list[str]) -> int: proc = subprocess.run([*client_args, *params]) return proc.returncode -def launch_offline(client: str, addr: str, appid: int, name: str, mods: list[str], mission: str) -> int: +def launch_offline(client: str, appid: int, name: str, mods: list[str], mission: str) -> int: """Launch offline with specific mods/missions""" concat = concat_mods(mods) client_args = concat_bash_args(client)