From c96afd76f946212e7c67a376ec2b5c8064459350 Mon Sep 17 00:00:00 2001 From: toxic-recker <62395124+toxicrecker@users.noreply.github.com> Date: Mon, 9 Jan 2023 22:00:05 +0530 Subject: [PATCH] Removed warning --- legendary/cli.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/legendary/cli.py b/legendary/cli.py index 41e422a..7f0fabc 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -2511,14 +2511,6 @@ class LegendaryCLI: if not args.skip_move: if not os.path.exists(args.new_path): os.makedirs(args.new_path) - if os.stat(args.new_path).st_dev != os.stat(igame.install_path).st_dev: - choice = get_boolean_choice(f'Moving files to another drive can cause errors when running the game, ' - f'however, it is unlikely to happen. Do you still wish to continue? (default=no)', default=False) - if not choice: - logger.info(f'To move it without a risk move the folder manually to {new_path} ' - f'and run "legendary move {app_name} "{args.new_path}" --skip-move"') - print("Aborting...") - return if os.path.exists(new_path): logger.error(f'The target path already contains a folder called "{game_folder}", ' f'please remove or rename it first.')