diff options
Diffstat (limited to 'src/map/itemdb.c')
-rw-r--r-- | src/map/itemdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/itemdb.c b/src/map/itemdb.c index dc4559483..8a7e34ceb 100644 --- a/src/map/itemdb.c +++ b/src/map/itemdb.c @@ -37,7 +37,7 @@ int itemdb_searchname_sub(DBKey key, DBData *data, va_list ap) //Absolute priority to Aegis code name. if (*dst != NULL) return 0; - if( strcmpi(item->name,str)==0 ) + if( strcmp(item->name,str)==0 ) // Case sensitive *dst=item; //Second priority to Client displayed name. @@ -61,7 +61,7 @@ struct item_data* itemdb_searchname(const char *str) { continue; // Absolute priority to Aegis code name. - if( strcasecmp(item->name,str) == 0 ) + if( strcmp(item->name,str) == 0 ) // Case sensitive return item; //Second priority to Client displayed name. |