소스 검색

- Fixed standing up no really making you stand up.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@5835 54d463be-8e91-2dee-dedb-b68131a5f0ec
skotlex 19 년 전
부모
커밋
376fa9d3e7
2개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 0
      Changelog-Trunk.txt
  2. 1 1
      src/map/pc.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/01
+	* Fixed standing up no really making you stand up. [Skotlex]
 	* Added upgrade_svn5834.sql to update view for item type 10. Because of the
 	  ammo upgrade, all arrows need their view set to 1. This query does that to
 	  all type 10 items (this includes all ninja weapons as well, but a proper

+ 1 - 1
src/map/pc.c

@@ -7321,7 +7321,7 @@ void pc_setstand(struct map_session_data *sd){
 	if(sd->sc.count && sd->sc.data[SC_TENSIONRELAX].timer!=-1)
 		status_change_end(&sd->bl,SC_TENSIONRELAX,-1);
 
-	sd->state.dead_sit = 0;
+	sd->state.dead_sit = sd->vd.dead_sit = 0;
 }
 
 int pc_split_str(char *str,char **val,int num)