summaryrefslogtreecommitdiff
path: root/script.rpy
diff options
context:
space:
mode:
Diffstat (limited to 'script.rpy')
-rw-r--r--script.rpy4
1 files changed, 2 insertions, 2 deletions
diff --git a/script.rpy b/script.rpy
index c990dfb..9adf878 100644
--- a/script.rpy
+++ b/script.rpy
@@ -17,14 +17,14 @@ label restore:
menu:
"Save changes":
python:
- f=open(get_path("editor.json"), "r")
+ f=open(get_path("quests.editor.json"), "r")
alltquests["Main"]=json.load(f)
f.close()
f=open(get_path("quests.json"), "w")
json.dump(alltquests, f, indent=1, separators=(',', ': '))
f.close()
pass
- "Discard changes":
+ "Continue editing":
pass
jump loop