diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-26 13:32:07 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-26 13:32:07 +0000 |
commit | 7f2a12250794e5897f39acfa7314db7f926bdf12 (patch) | |
tree | 101b8ac86ced9ce1ab1fe8be672dd20a7335226e /src/map/script.c | |
parent | 7d1f1f18cce9dc4ec17e2f9f69e9ceb8b7eb323c (diff) | |
download | hercules-7f2a12250794e5897f39acfa7314db7f926bdf12.tar.gz hercules-7f2a12250794e5897f39acfa7314db7f926bdf12.tar.bz2 hercules-7f2a12250794e5897f39acfa7314db7f926bdf12.tar.xz hercules-7f2a12250794e5897f39acfa7314db7f926bdf12.zip |
* Fixed items, that get dropped at 100% chance, being reported in @iteminfo as 'available in the shops only' (since/replaces r3482).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14627 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/script.c b/src/map/script.c index a05d79159..af723bf28 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -10655,7 +10655,7 @@ BUILDIN_FUNC(getitemslots) 2 type; 3 maxchance = Max drop chance of this item e.g. 1 = 0.01% , etc.. if = 0, then monsters don't drop it at all (rare or a quest item) - if = 10000, then this item is sold in NPC shops only + if = -1, then this item is sold in NPC shops only 4 sex; 5 equip; 6 weight; @@ -10695,7 +10695,7 @@ BUILDIN_FUNC(getiteminfo) 2 type; 3 maxchance = Max drop chance of this item e.g. 1 = 0.01% , etc.. if = 0, then monsters don't drop it at all (rare or a quest item) - if = 10000, then this item is sold in NPC shops only + if = -1, then this item is sold in NPC shops only 4 sex; 5 equip; 6 weight; |