diff options
author | Vincent Petithory <vincent.petithory@gmail.com> | 2012-11-08 12:28:22 +0100 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2012-11-08 14:23:09 +0100 |
commit | 1f941bef28ddfc9aa862caaafc19cc7523d4218f (patch) | |
tree | 0bbfa1e70e81692d9442024feb27f8ae008d8e8f /world/map/npc/009-4/orum.txt | |
parent | dafe3ad044287c833a11532144b3147f935b83ba (diff) | |
download | serverdata-1f941bef28ddfc9aa862caaafc19cc7523d4218f.tar.gz serverdata-1f941bef28ddfc9aa862caaafc19cc7523d4218f.tar.bz2 serverdata-1f941bef28ddfc9aa862caaafc19cc7523d4218f.tar.xz serverdata-1f941bef28ddfc9aa862caaafc19cc7523d4218f.zip |
Fix usages of getinventorylist():
* replace incorrect usage of @inventory_count with
the correct variable created by getinventorylist(): @inventorylist_count
Diffstat (limited to 'world/map/npc/009-4/orum.txt')
-rw-r--r-- | world/map/npc/009-4/orum.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/world/map/npc/009-4/orum.txt b/world/map/npc/009-4/orum.txt index 727b2976..c7c6eb55 100644 --- a/world/map/npc/009-4/orum.txt +++ b/world/map/npc/009-4/orum.txt @@ -540,7 +540,7 @@ L_Ready_Cavern: mes "\"Very good work you have done! Please take this for your efforts. It has helped me in a bind.\""; next; getinventorylist; - if ((checkweight("CandleHelmet", 1) == 0) || (@inventory_count == 100)) + if ((checkweight("CandleHelmet", 1) == 0) || (@inventorylist_count == 100)) goto L_Inventory; getexp @EXP_BREAK_BARRIERS, 0; getitem "CandleHelmet", 1; |