소스 검색

- Fixed pet being incorrectly removed when it had intimacy 0.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6139 54d463be-8e91-2dee-dedb-b68131a5f0ec
skotlex 19 년 전
부모
커밋
cbea996edc
3개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 0
      Changelog-Trunk.txt
  2. 1 1
      src/map/clif.c
  3. 1 1
      src/map/unit.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.
 
 2006/04/17
+	* Fixed pet being incorrectly removed when it had intimacy 0. [Skotlex]
 	* Some cleanup in the TK_RUN related code. [Skotlex]
 	* Added variable walk_count to unit_data to be use as a counter for cells
 	  walked for walk-triggered skills, on-chase skill triggers are now done

+ 1 - 1
src/map/clif.c

@@ -8044,7 +8044,7 @@ void clif_parse_LoadEndAck(int fd,struct map_session_data *sd)
 		clif_set0199(fd,3);
 
 	// pet
-	if(sd->status.pet_id > 0 && sd->pd && sd->pet.intimate > 0) {
+	if(sd->status.pet_id > 0 && sd->pd) {
 		map_addblock(&sd->pd->bl);
 		clif_spawn(&sd->pd->bl);
 		clif_send_petdata(sd,0,0);

+ 1 - 1
src/map/unit.c

@@ -1606,7 +1606,7 @@ int unit_remove_map(struct block_list *bl, int clrtype) {
 			map_freeblock_unlock();
 			return 0;
 		}
-		if (sd->bl.m != bl->m && sd->pet.intimate <= 0)
+		if (sd->pet.intimate <= 0)
 		{	//Remove pet.
 			intif_delete_petdata(sd->status.pet_id);
 			sd->status.pet_id = 0;