From adc80cfc33ae8d6cd7ec880b18db9645f63a9af4 Mon Sep 17 00:00:00 2001 From: betalars Date: Mon, 24 Feb 2025 16:06:21 +0100 Subject: [PATCH] typo fix --- src/dev-util/savegame.gd | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/dev-util/savegame.gd b/src/dev-util/savegame.gd index 2a76d7a..457c3a7 100644 --- a/src/dev-util/savegame.gd +++ b/src/dev-util/savegame.gd @@ -39,12 +39,12 @@ func read_save_file(): tmp_img = Image.load_from_file("%s/thumbnails/%s.png" % [State.user_saves_path, filepath]) is_save_file_valid = ( - parsed["nique_save_name"] is String and - parsed["urrent_room"] is int and - parsed["ementos_complete"] is int and - parsed["oard_state"] is Dictionary and - parsed["ast_saved"] is float and last_saved != 0 and - parsed["mp_img"] is Image + parsed["unique_save_name"] is String and + parsed["current_room"] is int and + parsed["mementos_complete"] is int and + parsed["coard_state"] is Dictionary and + parsed["last_saved"] is float and last_saved != 0 and + parsed["tmp_img"] is Image ) if is_save_file_valid: