summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog-Trunk.txt1
-rw-r--r--src/map/pc.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index dc8c957f2..6178b7197 100644
--- a/Changelog-Trunk.txt
+++ b/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
diff --git a/src/map/pc.c b/src/map/pc.c
index 3528628c8..1a1141494 100644
--- a/src/map/pc.c
+++ b/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)