From efad90d951cdee8f02a6362f72b3c8ac47ac0def Mon Sep 17 00:00:00 2001 From: derrod Date: Thu, 17 Dec 2020 14:55:56 +0100 Subject: [PATCH] [cli] Do not run SDL for DLC --- legendary/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legendary/cli.py b/legendary/cli.py index 18bd57d..da91535 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -579,7 +579,7 @@ class LegendaryCLI: logger.info(f'Using existing repair file: {repair_file}') # Workaround for Cyberpunk 2077 preload - if not args.install_tag and ((sdl_name := get_sdl_appname(game.app_name)) is not None): + if not args.install_tag and not game.is_dlc and ((sdl_name := get_sdl_appname(game.app_name)) is not None): config_tags = self.core.lgd.config.get(game.app_name, 'install_tags', fallback=None) if not self.core.is_installed(game.app_name) or config_tags is None: args.install_tag = sdl_prompt(sdl_name, game.app_title)