From ff0ced1c3345868dd268b8396a1ed7d54d0ecfec Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Sun, 10 May 2026 00:24:17 +0900 Subject: [PATCH] fix: cast int to str --- 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 8946b72..33d6745 100644 --- a/dzgui/api/steam.py +++ b/dzgui/api/steam.py @@ -94,7 +94,7 @@ def connect(addr: str, appid: int, name: str, mods: list[str]) -> None: params = [ "steam", "-applaunch", - appid, + str(appid), f"-connect={addr}", "-nolauncher", "-nosplash",