summaryrefslogtreecommitdiff
path: root/qeditor.rpy
diff options
context:
space:
mode:
Diffstat (limited to 'qeditor.rpy')
-rw-r--r--qeditor.rpy2
1 files changed, 1 insertions, 1 deletions
diff --git a/qeditor.rpy b/qeditor.rpy
index 2137e0b..3ad8c48 100644
--- a/qeditor.rpy
+++ b/qeditor.rpy
@@ -233,7 +233,7 @@ init python:
alltquests["Main"].sort(key=lambda x: x["quest_id"])
allquests=alltquests["Main"]
f=open(get_path("quests.editor.json"), "w")
- json.dump(allquests, f, indent=4, separators=(',', ': '))
+ json.dump(allquests, f, indent=4, separators=(',', ': '), sort_keys=True)
f.close()
renpy.notify("File saved as quests.editor.json")
return