Skip to content

Commit 9ec25a4

Browse files
committed
Fix unmodded profile being unlaunchable
1 parent bc9c247 commit 9ec25a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def select_profile(self):
6464
game_path = settings['smapi_path']
6565
game_path = os.path.dirname(game_path)
6666
if os.path.exists(game_path + '/Stardew Valley.exe'):
67-
cmd = f'start cmd /c \"\"{game_path}/Stardew Valley.exe\"\"'
67+
cmd = f'\"{game_path}/Stardew Valley.exe\"'
6868
call(cmd)
6969
else:
7070
cmd = f'start cmd /c \"\"{settings["smapi_path"]}\"'

0 commit comments

Comments
 (0)