From dd099c0afdf5c6e4a16b62736fde9d682019d0bc Mon Sep 17 00:00:00 2001 From: derrod Date: Thu, 30 Dec 2021 11:52:23 +0100 Subject: [PATCH] [core] Change overlay install path --- legendary/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legendary/core.py b/legendary/core.py index 3f282b4..1dd9ce2 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -1794,7 +1794,7 @@ class LegendaryCore: if igame := self.lgd.get_overlay_install_info(): path = igame.install_path else: - path = path or os.path.join(self.get_default_install_dir(), 'EOS_Overlay') + path = path or os.path.join(self.get_default_install_dir(), '.overlay') dlm = DLManager(path, base_urls[0]) analysis_result = dlm.run_analysis(manifest=manifest)