From 6e9c385b8fa2fbca97ca23e35f0b8e5dabd13526 Mon Sep 17 00:00:00 2001 From: Haru Date: Sat, 9 Nov 2013 18:51:21 +0100 Subject: Changed item Aegis ID and mob Sprite ID lookups to case sensitive. Signed-off-by: Haru --- src/map/itemdb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/map/itemdb.c') 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. -- cgit v1.2.3-60-g2f50