From 376c485a5ad0a0e0bd5238db123c530c826df8f8 Mon Sep 17 00:00:00 2001 From: "Casper V. Kristensen" Date: Wed, 8 Jan 2020 22:04:28 +0100 Subject: [PATCH] Update for Blizzard's new naming convention: Wow.exe -> WowClassic.exe. --- wau/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wau/cli.py b/wau/cli.py index c5846d5..056b0cb 100644 --- a/wau/cli.py +++ b/wau/cli.py @@ -16,7 +16,7 @@ class CLI: self.installed_addons = addons.load_installed_addons() def validate_addons_dir(self) -> None: - if not config.ADDONS_DIR.joinpath("../../Wow.exe").is_file(): + if not config.ADDONS_DIR.joinpath("../../WowClassic.exe").is_file(): a = input("Error: The application must be run from the Interface/AddOns directory. Continue anyway [y/N]? ") if a.lower() != "y": exit()