From a45ed8c42a86ca15387c6b4ec6575254e194e6a1 Mon Sep 17 00:00:00 2001 From: Toran Bruce Richards Date: Thu, 6 Apr 2023 11:46:13 +0100 Subject: [PATCH] Moves last_run_ai_settings.yaml to root so it's easier to find and use. --- scripts/ai_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ai_config.py b/scripts/ai_config.py index 945fcfb23327..678d3ab99367 100644 --- a/scripts/ai_config.py +++ b/scripts/ai_config.py @@ -9,7 +9,7 @@ def __init__(self, ai_name="", ai_role="", ai_goals=[]): self.ai_goals = ai_goals # Soon this will go in a folder where it remembers more stuff about the run(s) - SAVE_FILE = "last_run_ai_settings.yaml" + SAVE_FILE = "../last_run_ai_settings.yaml" @classmethod def load(cls, config_file=SAVE_FILE):