Skip to content

Commit

Permalink
Merge pull request #56 from gurrgur/python-3-12-compat
Browse files Browse the repository at this point in the history
Adapt to python 3.12 changes
  • Loading branch information
gurrgur authored Dec 23, 2023
2 parents 1a3e191 + 569917c commit a82a9d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion er-patcher
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ if __name__ == "__main__":
if f.name in ["eldenring.exe", "er-patcher"]:
continue
if not (game_dir_patched / f).is_file():
f.link_to(game_dir_patched / f)
(game_dir_patched / f).hardlink_to(f)

# start patched exe directly to avoid EAC
steam_cmd = sys.argv[1 + sys.argv.index("--"):]
Expand Down

0 comments on commit a82a9d6

Please sign in to comment.