Skip to content

Commit

Permalink
fix private server joiner
Browse files Browse the repository at this point in the history
  • Loading branch information
Atillart-One committed Jun 24, 2022
1 parent 7c2f1e8 commit cc0f8c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def vanilla():
if private_servers is False:
webbrowser.open('steam://rungameid/374320')
else:
gameRunner.join(bytes(dir_path + "/DarkSoulsIII.exe"))
gameRunner.join(bytes(dir_path + "/DarkSoulsIII.exe", 'utf-8'))

def launch():
delete()
Expand Down Expand Up @@ -279,7 +279,7 @@ def launch():
if private_servers is False:
webbrowser.open('steam://rungameid/374320')
else:
gameRunner.join(bytes(dir_path + "/DarkSoulsIII.exe"))
gameRunner.join(bytes(dir_path + "/DarkSoulsIII.exe", 'utf-8'))

if git_enabled == 1:
class CloneProgress(git.RemoteProgress):
Expand Down

0 comments on commit cc0f8c9

Please sign in to comment.