From 04bce081e98d335b34a2ca593791836f019d9ef4 Mon Sep 17 00:00:00 2001 From: Raffson Date: Sun, 25 Sep 2022 18:20:40 +0200 Subject: [PATCH] Saved games folder for Retribution --- game/persistency.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/game/persistency.py b/game/persistency.py index 9b982407..e64734fe 100644 --- a/game/persistency.py +++ b/game/persistency.py @@ -28,15 +28,15 @@ def base_path() -> str: def save_dir() -> Path: - return Path(base_path()) / "Liberation" / "Saves" + return Path(base_path()) / "Retribution" / "Saves" def _temporary_save_file() -> str: - return str(save_dir() / "tmpsave.liberation") + return str(save_dir() / "tmpsave.retribution") def _autosave_path() -> str: - return str(save_dir() / "autosave.liberation") + return str(save_dir() / "autosave.retribution") def mission_path_for(name: str) -> Path: @@ -70,7 +70,7 @@ def autosave(game: Game) -> bool: """ Autosave to the autosave location :param game: Game to save - :return: True if saved succesfully + :return: True if saved successfully """ try: with open(_autosave_path(), "wb") as f: