ソースを参照

- Fixed a typo in map_search_freecell which was returning incorrect cells according to the ranges given. Increased the max number of iteration for finding a suitable cell to 100.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6172 54d463be-8e91-2dee-dedb-b68131a5f0ec
skotlex 19 年 前
コミット
a2ba8edd25
2 ファイル変更4 行追加2 行削除
  1. 2 0
      Changelog-Trunk.txt
  2. 2 2
      src/map/map.c

+ 2 - 0
Changelog-Trunk.txt

@@ -4,6 +4,8 @@ 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.
 
 2006/04/18
+	* Fixed a typo in map_search_freecell which was returning incorrect cells
+	  according to the ranges given. [Skotlex]
 	* A tiny fix to @kami [Zido]
 	* The IRC Bot can now autojoin when kicked, set in irc_athena. [Zido]
 	* Added @who to the IRC Bot, outputs all online characters. [Zido]

+ 2 - 2
src/map/map.c

@@ -1402,13 +1402,13 @@ int map_search_freecell(struct block_list *src, int m, short *x,short *y, int rx
 	}
 	if (rx >= 0 && ry >= 0) {
 		tries = rx2*ry2;
-		if (tries > 50) tries = 50;
+		if (tries > 100) tries = 100;
 	} else
 		tries = 100;
 	
 	while(tries--) {
 		*x = (rx >= 0)?(rand()%rx2-rx+bx):(rand()%(map[m].xs-2)+1);
-		*y = (ry >= 0)?(rand()%rx2-ry+by):(rand()%(map[m].ys-2)+1);
+		*y = (ry >= 0)?(rand()%ry2-ry+by):(rand()%(map[m].ys-2)+1);
 		
 		if (map_getcell(m,*x,*y,CELL_CHKREACH))
 		{