Sfoglia il codice sorgente

Corrected typo in battle_range : bl -> src

git-svn-id: https://svn.code.sf.net/p/rathena/svn/branches/stable@453 54d463be-8e91-2dee-dedb-b68131a5f0ec
celest 20 anni fa
parent
commit
8851932828
2 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  1. 3 0
      Changelog.txt
  2. 1 1
      src/map/battle.c

+ 3 - 0
Changelog.txt

@@ -1,4 +1,7 @@
 Date	Added
+12/5
+        * Corrected typo in battle_range [celest]
+
 12/4
 	* Fixed a crash in clif_send when player disconnects but player
 	  object is not fully removed from map [MouseJstr]

+ 1 - 1
src/map/battle.c

@@ -4964,7 +4964,7 @@ int battle_check_range(struct block_list *src,struct block_list *bl,int range)
 // be lenient if the skill was cast before we have moved to the correct position [Celest]
 		if (src->type != BL_PC)
 			return 0;
-		else if (bl->type == BL_PC) {
+		else if (src->type == BL_PC) {
 			struct map_session_data *sd;
 			nullpo_retr(0, (sd=(struct map_session_data *)bl));
 			if (sd->walktimer != -1 && !((arange-=battle_config.skill_range_leniency)<=range))