diff options
author | Stefan Dombrowski <stefan@uni-bonn.de> | 2010-11-07 20:22:10 +0100 |
---|---|---|
committer | Stefan Dombrowski <stefan@uni-bonn.de> | 2010-11-07 20:22:10 +0100 |
commit | 039df52fe2f12043771a3d3c6abfe39e4215102c (patch) | |
tree | 76f7d6c480bc975025d01fae92d5e9dbda6edabc /npc | |
parent | 0776b29837622f723a5998fafb9806ef0d851ed2 (diff) | |
download | serverdata-039df52fe2f12043771a3d3c6abfe39e4215102c.tar.gz serverdata-039df52fe2f12043771a3d3c6abfe39e4215102c.tar.bz2 serverdata-039df52fe2f12043771a3d3c6abfe39e4215102c.tar.xz serverdata-039df52fe2f12043771a3d3c6abfe39e4215102c.zip |
Fixing return in banker script
Also renaming menu option to "Nevermind" if it results to goto L_Nev.
Reviewed-by: PjotrOrial
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/banker.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/banker.txt b/npc/functions/banker.txt index 08b67229..2f738478 100644 --- a/npc/functions/banker.txt +++ b/npc/functions/banker.txt @@ -50,7 +50,7 @@ L_Dep_Input: "Go back", L_Start, "Try again", L_Dep_Input, "Deposit all", L_Dep_All, - "Quit", -; + "Nevermind", -; goto L_Nev; L_Dep_5k: @@ -119,7 +119,7 @@ L_With: "All of my money", L_With_All, "I've changed my mind", L_Start, "Quit", -; - next; + return; L_With_Input: input @Amount; @@ -130,7 +130,7 @@ L_With_Input: "Go back", L_Start, "Try again", L_With_Input, "Withdraw all", L_With_All, - "Quit", -; + "Nevermind", -; goto L_Nev; L_With_5k: |