- Reverted last change, I was wrong in my assumption o_O;

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11883 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex 2007-12-10 10:22:52 +00:00
parent c010e4e982
commit 20fb727ce1
2 changed files with 3 additions and 6 deletions

View File

@ -4,7 +4,6 @@ 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. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2007/12/10 2007/12/10
* Fixed the disguise packet sent in clif_move
* Added missing range/skill-mask info to reflected damage (fixes autospells * Added missing range/skill-mask info to reflected damage (fixes autospells
not triggering on it) [Skotlex] not triggering on it) [Skotlex]
2007/12/09 2007/12/09

View File

@ -934,7 +934,7 @@ static int clif_set_unit_walking(struct block_list* bl, struct unit_data* ud, un
//Modifies the buffer for disguise characters and sends it to self. //Modifies the buffer for disguise characters and sends it to self.
//Flag = 0: change id to negative, buf will have disguise data. //Flag = 0: change id to negative, buf will have disguise data.
//Flag = 1: change id to positive, class and option to make your own char invisible. //Flag = 1: change id to positive, class and option to make your own char invisible.
static void clif_setdisguise(struct map_session_data *sd, unsigned char *buf,int len, int flag) static void clif_setdisguise(struct map_session_data *sd, unsigned char *buf,int len, bool flag)
{ {
if (!flag) { if (!flag) {
WBUFL(buf,2)=-sd->bl.id; WBUFL(buf,2)=-sd->bl.id;
@ -1322,10 +1322,8 @@ void clif_move(struct unit_data *ud)
WBUFPOS2(buf,6,bl->x,bl->y,ud->to_x,ud->to_y,8,8); WBUFPOS2(buf,6,bl->x,bl->y,ud->to_x,ud->to_y,8,8);
WBUFL(buf,12)=gettick(); WBUFL(buf,12)=gettick();
clif_send(buf, 16, bl, AREA_WOS); clif_send(buf, 16, bl, AREA_WOS);
if (disguised(bl)) { if (disguised(bl))
WBUFL(buf,2)=-bl->id; clif_setdisguise((TBL_PC*)bl, buf, 16, 0);
clif_send(buf, 16, bl, SELF);
}
} }
/*========================================== /*==========================================