diff options
author | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-25 07:47:29 +0000 |
---|---|---|
committer | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-25 07:47:29 +0000 |
commit | b01bae71eb625ca94aaf3f8c60fa155a08cd471f (patch) | |
tree | 64dbb62fd9a3c07272b2dd26fc16e63376e36d61 /src | |
parent | b775271bebd5b251e0abbaa97d030e2aeea354a9 (diff) | |
download | hercules-b01bae71eb625ca94aaf3f8c60fa155a08cd471f.tar.gz hercules-b01bae71eb625ca94aaf3f8c60fa155a08cd471f.tar.bz2 hercules-b01bae71eb625ca94aaf3f8c60fa155a08cd471f.tar.xz hercules-b01bae71eb625ca94aaf3f8c60fa155a08cd471f.zip |
Fixed bugreport:1223 (Invalid Items In Shops Are Processed Incorrectly)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12650 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r-- | src/map/npc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/npc.c b/src/map/npc.c index 92f61564c..98dd2d609 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -1672,7 +1672,7 @@ static const char* npc_parse_shop(char* w1, char* w2, char* w3, char* w4, const break; } - if( (id = itemdb_search(nameid)) == NULL ) + if( (id = itemdb_exists(nameid)) == NULL ) { ShowError("npc_parse_shop: Invalid sell item in file '%s', line '%d'. Ignoring the rest of the line...\n * w1=%s\n * w2=%s\n * w3=%s\n * w4=%s\n", filepath, strline(buffer,start-buffer), w1, w2, w3, w4); break; |