diff --git a/fix-savs.py b/fix-savs.py index c5ef99f..1681e47 100644 --- a/fix-savs.py +++ b/fix-savs.py @@ -36,6 +36,7 @@ def format_id_string(guid: str): def edit_user_json(old_id: str, new_id: str): + print(f"Editing user.sav from {old_id} to {new_id}") filename = f"savs/{old_id}.json" old_id = format_id_string(old_id) new_id = format_id_string(new_id) @@ -49,6 +50,7 @@ def edit_user_json(old_id: str, new_id: str): def edit_level_json(old_id: str, new_id: str): + print(f"Editing Level.sav from {old_id} to {new_id}") filler_id = "00000000-0000-0000-0000-000000000006" filename = "savs/Level.json" old_id = format_id_string(old_id)