diff options
author | coffee <coffee@coffee-EP45-UD3L.(none)> | 2011-09-11 03:41:52 -0300 |
---|---|---|
committer | coffee <coffee@coffee-EP45-UD3L.(none)> | 2011-09-11 03:41:52 -0300 |
commit | a9868851cfe19c503cc72b0289889c564b41dd20 (patch) | |
tree | 4d01352547dcdb4c2a64169332480dff2a83bfaf /world | |
parent | 634e31bc0f4d1efac4936619205e454dd39f2514 (diff) | |
download | serverdata-a9868851cfe19c503cc72b0289889c564b41dd20.tar.gz serverdata-a9868851cfe19c503cc72b0289889c564b41dd20.tar.bz2 serverdata-a9868851cfe19c503cc72b0289889c564b41dd20.tar.xz serverdata-a9868851cfe19c503cc72b0289889c564b41dd20.zip |
Fix another goto non existent label bug. This time on ishi.
Diffstat (limited to 'world')
-rw-r--r-- | world/map/npc/001-1/rewards_master.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/world/map/npc/001-1/rewards_master.txt b/world/map/npc/001-1/rewards_master.txt index 0cec114c..04cc9ce8 100644 --- a/world/map/npc/001-1/rewards_master.txt +++ b/world/map/npc/001-1/rewards_master.txt @@ -71,7 +71,7 @@ L_Give_all_loop: if (@gotocounter < 1) goto L_Give_all_next; set @itemgiveerror, 0; callsub SUB_give_item; - if (@itemgiveerror != 0) goto L_Give_all_done; + if (@itemgiveerror != 0) goto L_Close; goto L_Give_all_loop; L_Give_all_next: |