From 837c1661875cd7cbc846c7c8a81bf66e3c10424c Mon Sep 17 00:00:00 2001 From: derrod Date: Wed, 13 Dec 2023 23:18:12 +0100 Subject: [PATCH] [cli] Show metadata command line in "info" command --- legendary/cli.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/legendary/cli.py b/legendary/cli.py index 010a525..f701aa7 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -1704,6 +1704,9 @@ class LegendaryCLI: else: game_infos.append(InfoItem('Extra launch options', 'launch_options', None, [])) + game_infos.append(InfoItem('Command Line', 'command_line', game.additional_command_line, + game.additional_command_line)) + # list all owned DLC based on entitlements if entitlements and not game.is_dlc: owned_entitlements = {i['entitlementName'] for i in entitlements}