diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-06-01 15:27:18 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-06-01 15:27:18 -0600 |
commit | a103943129e06e765d24082766a0c80a2030348f (patch) | |
tree | a60bb2702a19186115188568b04503df83b43884 /npc/015-1_Woodland/alice.txt | |
parent | 260776b9001af6f8ebab74da2d47ec2fcc655e1e (diff) | |
download | serverdata-a103943129e06e765d24082766a0c80a2030348f.tar.gz serverdata-a103943129e06e765d24082766a0c80a2030348f.tar.bz2 serverdata-a103943129e06e765d24082766a0c80a2030348f.tar.xz serverdata-a103943129e06e765d24082766a0c80a2030348f.zip |
Fix a lockup in Alice's script
Diffstat (limited to 'npc/015-1_Woodland/alice.txt')
-rw-r--r-- | npc/015-1_Woodland/alice.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/npc/015-1_Woodland/alice.txt b/npc/015-1_Woodland/alice.txt index 3d789eae..277dba01 100644 --- a/npc/015-1_Woodland/alice.txt +++ b/npc/015-1_Woodland/alice.txt @@ -10,18 +10,21 @@ menu "Yes, sure.", L_findmany, "Herbs?", L_herbs, - "Nope, just enjoying the scenery.", close, + "Nope, just enjoying the scenery.", L_close, "I saw the cat, but it doesn't like me.", L_cat; if (LastHiss == 1) menu "Yes, sure.", L_findmany, "Herbs?", L_herbs, - "Nope, just enjoying the scenery.", close, + "Nope, just enjoying the scenery.", L_close, "There is a monster in that cave!", L_cave; menu "Yes, sure.", L_findmany, "Herbs?", L_herbs, - "Nope, just enjoying the scenery.", close; + "Nope, just enjoying the scenery.", L_close; + +L_close: + close; L_findmany: mes "[Alice]"; |