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/npc.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/npc.c')
-rw-r--r-- | src/map/npc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/npc.c b/src/map/npc.c index 2c514eb72..4b188c177 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -1939,8 +1939,8 @@ static const char* npc_parse_shop(char* w1, char* w2, char* w3, char* w4, const id->name, nameid, value, (int)(value*0.75), id->value_sell, (int)(id->value_sell*1.24), filepath, strline(buffer,start-buffer)); } //for logs filters, atcommands and iteminfo script command - if( id->maxchance <= 0 ) - id->maxchance = 10000; //10000 (100% drop chance)would show that the item's sold in NPC Shop + if( id->maxchance == 0 ) + id->maxchance = -1; // -1 would show that the item's sold in NPC Shop items[i].nameid = nameid; items[i].value = value; |