diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-07-27 17:53:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-07-27 17:53:13 -0300 |
commit | 65d3e9a83ec557d64a45c6c20cc16c2b95b45ec4 (patch) | |
tree | 6ba83a10c14a3105fceff28210c5dedb60a329c7 | |
parent | f56d96be1649ed7cb2934029e36ff57eed0d6a42 (diff) | |
download | sdk-65d3e9a83ec557d64a45c6c20cc16c2b95b45ec4.tar.gz sdk-65d3e9a83ec557d64a45c6c20cc16c2b95b45ec4.tar.bz2 sdk-65d3e9a83ec557d64a45c6c20cc16c2b95b45ec4.tar.xz sdk-65d3e9a83ec557d64a45c6c20cc16c2b95b45ec4.zip |
Smooth over a transition
-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 |