From 2ffd18355445fad5f4ff144a8fb85495b9f3efd9 Mon Sep 17 00:00:00 2001 From: derrod Date: Mon, 31 Oct 2022 12:31:49 +0100 Subject: [PATCH] [core] Add note about difference to EGL save path resolver --- legendary/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/legendary/core.py b/legendary/core.py index 78b3890..3914b5a 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -826,6 +826,8 @@ class LegendaryCore: } elif sys_platform == 'darwin' and platform == 'Mac': path_vars |= { + # Note: EGL actually resolves this to "~/Library/Application Support/Epic", but the only game + # I could find using this (Loop Hero) expects it to be "~/Library/Application Support". '{appdata}': os.path.expanduser('~/Library/Application Support'), '{userdir}': os.path.expanduser('~/Documents'), '{userlibrary}': os.path.expanduser('~/Library'),