summaryrefslogtreecommitdiff
path: root/src/map/npc.c
diff options
context:
space:
mode:
authorai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-12-30 17:23:54 +0000
committerai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-12-30 17:23:54 +0000
commit457f404245134d0a84d83d697111bf17fb68b0f4 (patch)
tree0ceaa9b19fba1c05ddb6e3e01c6efaf68879c3a4 /src/map/npc.c
parent10b223a4bfb9c60bb8bc86f18feb69b7313d854b (diff)
downloadhercules-457f404245134d0a84d83d697111bf17fb68b0f4.tar.gz
hercules-457f404245134d0a84d83d697111bf17fb68b0f4.tar.bz2
hercules-457f404245134d0a84d83d697111bf17fb68b0f4.tar.xz
hercules-457f404245134d0a84d83d697111bf17fb68b0f4.zip
* Fixed improper use of itemdb_search. It does not return NULL but a dummy item, if the item id is invalid.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14642 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/npc.c')
-rw-r--r--src/map/npc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/npc.c b/src/map/npc.c
index 4b188c177..b8fd5712c 100644
--- a/src/map/npc.c
+++ b/src/map/npc.c
@@ -1183,7 +1183,7 @@ int npc_cashshop_buy(struct map_session_data *sd, int nameid, int amount, int po
if( sd->state.trading )
return 4;
- if( (item = itemdb_search(nameid)) == NULL )
+ if( (item = itemdb_exists(nameid)) == NULL )
return 5; // Invalid Item
ARR_FIND(0, nd->u.shop.count, i, nd->u.shop.shop_item[i].nameid == nameid);