diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-22 09:44:58 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-22 09:44:58 -0300 |
commit | a20fe9a0fd48c1c708db327897f3df660131cdc0 (patch) | |
tree | 795d125d6dfc3d9bb070f6d53d1e6e4b63f7c39d /npc/001-1/portal.txt | |
parent | 78de6b7b7632923396899ddf38cc72238925dae1 (diff) | |
download | serverdata-a20fe9a0fd48c1c708db327897f3df660131cdc0.tar.gz serverdata-a20fe9a0fd48c1c708db327897f3df660131cdc0.tar.bz2 serverdata-a20fe9a0fd48c1c708db327897f3df660131cdc0.tar.xz serverdata-a20fe9a0fd48c1c708db327897f3df660131cdc0.zip |
Fix sleepy typing
Diffstat (limited to 'npc/001-1/portal.txt')
-rw-r--r-- | npc/001-1/portal.txt | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/npc/001-1/portal.txt b/npc/001-1/portal.txt index cb5fbeb2d..3cead0d6d 100644 --- a/npc/001-1/portal.txt +++ b/npc/001-1/portal.txt @@ -75,11 +75,12 @@ OnTouch: mesn; mes l("This Portal can send your soul back to the world, along any items, money and/or experience gained."); mes l("Would you like to leave this place?"); - menu - l("No."), L_Close, - l("Yes."), L_Leave; + select + l("No."), + l("Yes."); -L_Leave: - warp getsavepoint(0), getsavepoint(1), getsavepoint(2); - goto L_Close; + if (@menu == 2) + warp getsavepoint(0), getsavepoint(1), getsavepoint(2); + closedialog; + close; } |