Ver Fonte

Fixed bugreport:1223 (Invalid Items In Shops Are Processed Incorrectly)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12650 54d463be-8e91-2dee-dedb-b68131a5f0ec
toms há 17 anos atrás
pai
commit
c79a5092eb
2 ficheiros alterados com 2 adições e 1 exclusões
  1. 1 0
      Changelog-Trunk.txt
  2. 1 1
      src/map/npc.c

+ 1 - 0
Changelog-Trunk.txt

@@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK.  ALL UNTESTED BUGFIXES/FEATURES GO
 IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
 
 2008/04/25
+	* Fixed bugreport:1223 (Invalid Items In Shops Are Processed Incorrectly)
 	* Modified delitem/delitem2 to have the same behaviour as getitem/getitem2 (optional
 	  account_id parameter) bugreport:1035
 	* Modified doc in consequence [Toms]

+ 1 - 1
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;