We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e812ebd commit f426b63Copy full SHA for f426b63
1 file changed
resources/steam.py
@@ -29,7 +29,7 @@ def run(steam_exe_path, steam_launch_args, appid):
29
log('executing ' + steam_exe_path + ' ' + steam_launch_args + ' steam://rungameid/' + appid)
30
31
# https://developer.valvesoftware.com/wiki/Steam_browser_protocol
32
- subprocess.call([steam_exe_path, user_args, 'steam://rungameid/' + appid])
+ subprocess.call([steam_exe_path] + user_args + ['steam://rungameid/' + appid]) #Concatenate the arrays into one
33
34
35
def get_user_games(steam_api_key, steam_user_id, recent_only=False):
0 commit comments