From 9471ca41e174cf343ccc4a386245cf4cb7fdc239 Mon Sep 17 00:00:00 2001 From: derrod Date: Fri, 8 Oct 2021 10:17:15 +0200 Subject: [PATCH] [core] Do not check egstore folder for DLC --- legendary/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legendary/core.py b/legendary/core.py index d30e924..553e050 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -1199,7 +1199,7 @@ class LegendaryCore: manifest_data = None # check if the game is from an EGL installation, load manifest if possible - if os.path.exists(os.path.join(app_path, '.egstore')): + if not game.is_dlc and os.path.exists(os.path.join(app_path, '.egstore')): mf = None if not egl_guid: for f in os.listdir(os.path.join(app_path, '.egstore')):