summaryrefslogtreecommitdiff
path: root/qeditor.rpy
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-08-07 01:17:32 -0300
committerJesusaves <cpntb1@ymail.com>2022-08-07 01:17:32 -0300
commit0d3afda98eafcdb80d73aa41ec256af318386779 (patch)
treef7e56fa4ca72f0f528692320b1dcaf629365618a /qeditor.rpy
parent2f9ba20dec23060ea21d90feb358da7691993d67 (diff)
downloadsdk-0d3afda98eafcdb80d73aa41ec256af318386779.tar.gz
sdk-0d3afda98eafcdb80d73aa41ec256af318386779.tar.bz2
sdk-0d3afda98eafcdb80d73aa41ec256af318386779.tar.xz
sdk-0d3afda98eafcdb80d73aa41ec256af318386779.zip
Minor bugs on quest editor
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