summaryrefslogtreecommitdiff
path: root/src/map/itemdb.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-01-20 14:32:10 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-01-20 14:32:10 +0000
commit9b318079b61e0582e91c1e20786bf9ab3df857c5 (patch)
tree79044c2bff59d6664787a4d472646ff0251e9c6e /src/map/itemdb.c
parent5c4b7e349d1ac6e251cb6ee139bb365afb083083 (diff)
downloadhercules-9b318079b61e0582e91c1e20786bf9ab3df857c5.tar.gz
hercules-9b318079b61e0582e91c1e20786bf9ab3df857c5.tar.bz2
hercules-9b318079b61e0582e91c1e20786bf9ab3df857c5.tar.xz
hercules-9b318079b61e0582e91c1e20786bf9ab3df857c5.zip
- Fixed a comparison whn doing item searches
- Fixed hom_setting&0x2 conflicting with the 'view-range' limit check. - Stone curse now uses status_percent_damage instead of a precalculated value. - Merged the SA_MONOCELL and SA_CLASSCHANGE code. After changing class all the status changes that cannot be triggered on bosses are dispelled. - SA_CLASSCHANGE now uses the bloody branch list to pick a target MVP class. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12098 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/itemdb.c')
-rw-r--r--src/map/itemdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/itemdb.c b/src/map/itemdb.c
index fcd6c804d..bce1989e5 100644
--- a/src/map/itemdb.c
+++ b/src/map/itemdb.c
@@ -74,7 +74,7 @@ struct item_data* itemdb_searchname(const char *str)
return item;
//Second priority to Client displayed name.
- if( strcasecmp(item->name,str) == 0 )
+ if( strcasecmp(item->jname,str) == 0 )
item2 = item;
}