summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsketchyphoenix <sketchyphoenix@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-06-18 08:02:47 +0000
committersketchyphoenix <sketchyphoenix@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-06-18 08:02:47 +0000
commit709f0a57b14340531435450e43a8b277cae024d3 (patch)
tree4bd6e4cc60967daaaf50495ae21867942199ae5b
parent9a12ea901de674bb1a66c3be20163ff743d75793 (diff)
downloadhercules-709f0a57b14340531435450e43a8b277cae024d3.tar.gz
hercules-709f0a57b14340531435450e43a8b277cae024d3.tar.bz2
hercules-709f0a57b14340531435450e43a8b277cae024d3.tar.xz
hercules-709f0a57b14340531435450e43a8b277cae024d3.zip
Added a fix for refresh properly displaying dead and sitting players.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12851 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt2
-rw-r--r--src/map/clif.c4
2 files changed, 6 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 7440382d8..94e03953d 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -3,6 +3,8 @@ Date Added
AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
+2008/06/18
+ * Added a fix for refresh properly displaying dead and sitting players. [SketchyPhoenix]
2008/06/17
* Forgot to commit source modification from r12833 (Updated Novice grounds.) [L0ne_W0lf]
2008/06/16
diff --git a/src/map/clif.c b/src/map/clif.c
index ee764f3c6..fe802e580 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -7059,6 +7059,10 @@ int clif_refresh(struct map_session_data *sd)
clif_send_homdata(sd,0,0);
map_foreachinrange(clif_getareachar,&sd->bl,AREA_SIZE,BL_ALL,sd);
clif_weather_check(sd);
+ if( pc_issit(sd) )
+ clif_sitting(&sd->bl);
+ if( pc_isdead(sd) ) //When you refresh, resend the death packet.
+ clif_clearunit_area(&sd->bl,1);
#ifndef TXT_ONLY
mail_clear(sd);