From 807f544b26dd08babcba9613734afc8c4fa07d66 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Tue, 24 Jan 2023 03:45:43 +0100 Subject: [PATCH] SC2: use warning log level for potentially broken map files --- Starcraft2Client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Starcraft2Client.py b/Starcraft2Client.py index 2b42fc8b..e2d6faf4 100644 --- a/Starcraft2Client.py +++ b/Starcraft2Client.py @@ -203,8 +203,8 @@ class SC2Context(CommonContext): if is_mod_update_available("TheCondor07", "Starcraft2ArchipelagoData", current_ver): sc2_logger.info("NOTICE: Update for required files found. Run /download_data to install.") elif maps_present: - sc2_logger.info("NOTICE: Your map files may be outdated (version number not found). Run /download_data " - "to update them.") + sc2_logger.warning("NOTICE: Your map files may be outdated (version number not found). " + "Run /download_data to update them.") def on_print_json(self, args: dict):