diff options
-rw-r--r-- | 00_init.rpy | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/00_init.rpy b/00_init.rpy index 3d00438..843be94 100644 --- a/00_init.rpy +++ b/00_init.rpy @@ -170,6 +170,7 @@ init -3 python: f=open(get_path_if_exists("quests.json"), "r") alltquests=json.load(f) f.close() + alltquests["Main"].sort(key=lambda x: x["quest_id"]) allquests=alltquests["Main"] # Load story data |