Regarding extra_info when saving files
Posted: Wed Dec 04, 2013 8:40 am
I found that the extra_info feature when saving files is kinda broken.
When using scan_saved_game, the extra_info returned is always an empty string.
After a bit of poking here and there, I found the cause:
In "renpy/loadsave.py", line 282:
should be
instead.
After applying this fix, it works again.
Also, why is the extra_info stored in 2 different files in the save file? (json and extra_info)
When using scan_saved_game, the extra_info returned is always an empty string.
After a bit of poking here and there, I found the cause:
In "renpy/loadsave.py", line 282:
Code: Select all
json = { "_save_name" : extra_info }Code: Select all
json = { "_extra_info" : extra_info }After applying this fix, it works again.
Also, why is the extra_info stored in 2 different files in the save file? (json and extra_info)