From 5b855b0d3effa859a47ad868ed5626b19679c84f Mon Sep 17 00:00:00 2001 From: derrod Date: Tue, 8 Sep 2020 04:38:29 +0200 Subject: [PATCH] [cli] Add note about potentially missing games when importing --- legendary/cli.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/legendary/cli.py b/legendary/cli.py index 783e06d..f21c2bd 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -922,6 +922,9 @@ class LegendaryCLI: for egl_game in importable: print(' *', egl_game.app_name, '-', egl_game.display_name) + print('\nNote: Only games that are also in Legendary\'s database are listed, ' + 'if anything is missing run "list-games" first to update it.') + if args.yes or get_boolean_choice('Do you want to import the games from EGL?'): for egl_game in importable: logger.info(f'Importing "{egl_game.display_name}"...')