Skip to content
This repository has been archived by the owner on Dec 2, 2021. It is now read-only.

Commit

Permalink
Remove redundant quotes
Browse files Browse the repository at this point in the history
This actually caused the in-game nick to have quotes, whoops.
  • Loading branch information
derrod committed Mar 3, 2020
1 parent b144265 commit e1494fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rktlnch.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def exit(code=0):
f'-epicapp={game_manifest["AppName"]}',
'-epicenv=Prod',
'-EpicPortal',
f'-epicusername="{auth_data["displayName"]}"',
f'-epicusername={auth_data["displayName"]}',
f'-epicuserid={auth_data["account_id"]}',
'-epiclocale=en'],
cwd=game_manifest['InstallLocation'])
Expand Down

0 comments on commit e1494fe

Please sign in to comment.