Explorar el Código

- 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 hace 19 años
padre
commit
376fa9d3e7
Se han modificado 2 ficheros con 2 adiciones y 1 borrados
  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)