diff options
-rw-r--r-- | qeditor.rpy | 2 | ||||
-rw-r--r-- | qeditor_adv.rpy | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/qeditor.rpy b/qeditor.rpy index df6f707..dd19ddc 100644 --- a/qeditor.rpy +++ b/qeditor.rpy @@ -204,7 +204,7 @@ screen quest_editor(): textbutton _("Close") action Return() textbutton _("New Quest") action Function(qeditor_new) textbutton _("New S.") action Function(qeditor_new, 1) - textbutton _("Auto-New") action Call("qeditor_supernew") + textbutton _("Auto-New") action Jump("qeditor_supernew") ## Right-click and escape refresh screen key "game_menu" action Function(RestartInteraction)#Return() diff --git a/qeditor_adv.rpy b/qeditor_adv.rpy index 45d6748..a531355 100644 --- a/qeditor_adv.rpy +++ b/qeditor_adv.rpy @@ -149,5 +149,7 @@ label qeditor_supernew: i += 1 renpy.notify("New quest added: %d" % queid) - return + #return + $ qeditor_save() + jump quest_editors |