diff options
-rw-r--r-- | npc/001-6/warp.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/001-6/warp.txt b/npc/001-6/warp.txt index 3e0607eb7..35ff5613c 100644 --- a/npc/001-6/warp.txt +++ b/npc/001-6/warp.txt @@ -14,10 +14,12 @@ OnTouch: end; OnWarper: - if (isin("001-6", 159, 157, 159, 157) && ispcdead()==0 ) + if (isin("001-6", 159, 157, 159, 157)) { + if (!ispcdead()) warp "soren", 179, 76; - else + } else { dispbottom l("Failed to warp to Soren Village."); + } end; OnInit: |