Skip to content

Commit

Permalink
adapt to python 3.12 changes
Browse files Browse the repository at this point in the history
Co-authored-by: mtnorthcott <[email protected]>
  • Loading branch information
gurrgur and mtnorthcott committed Nov 20, 2023
1 parent 1a3e191 commit 569917c
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 569917c

Please sign in to comment.