From 3be5e45374b96c5f127d3c715dd09cc95b144449 Mon Sep 17 00:00:00 2001 From: Raffson Date: Sun, 18 Sep 2022 18:14:39 +0200 Subject: [PATCH] Adjust preferences path for Retribution --- qt_ui/liberation_install.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qt_ui/liberation_install.py b/qt_ui/liberation_install.py index 8ffbc30c..29456071 100644 --- a/qt_ui/liberation_install.py +++ b/qt_ui/liberation_install.py @@ -13,9 +13,9 @@ global __dcs_installation_directory global __last_save_file -USER_PATH = Path(os.environ["LOCALAPPDATA"]) / "DCSLiberation" +USER_PATH = Path(os.environ["LOCALAPPDATA"]) / "DCSRetribution" -PREFERENCES_PATH = USER_PATH / "liberation_preferences.json" +PREFERENCES_PATH = USER_PATH / "retribution_preferences.json" def init(): @@ -26,7 +26,7 @@ def init(): if PREFERENCES_PATH.exists(): try: - logging.debug("Loading Liberation preferences from %s", PREFERENCES_PATH) + logging.debug("Loading Retribution preferences from %s", PREFERENCES_PATH) with PREFERENCES_PATH.open() as prefs: pref_data = json.load(prefs) __dcs_saved_game_directory = pref_data["saved_game_dir"]