- Changed clif_blown to use fixpos again as per aegis packets.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9402 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex 2006-12-04 16:08:42 +00:00
parent 1424d93e12
commit 722b1689e3
2 changed files with 6 additions and 2 deletions

View File

@ -4,6 +4,9 @@ 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.
2006/12/04 2006/12/04
* Knockback will again use the fixpos packet instead of the slide packet
(slide was introduced with high jump) since Aegis captures say that packet
is still used for knockbacks. [Skotlex]
* Repairing items via scripts no longer displays "item has been repaired" * Repairing items via scripts no longer displays "item has been repaired"
[Skotlex] [Skotlex]
* Status Recovery again makes mobs unlock their current target. [Skotlex] * Status Recovery again makes mobs unlock their current target. [Skotlex]

View File

@ -1864,8 +1864,9 @@ int clif_changemapserver(struct map_session_data *sd, char *mapname, int x, int
int clif_blown(struct block_list *bl) { int clif_blown(struct block_list *bl) {
//Previous Aegis versions simply used clif_fixpos, but it seems clif_slide works better on current clients. //Previous Aegis versions simply used clif_fixpos, but it seems clif_slide works better on current clients.
// return clif_fixpos(bl); // However, because of client desyncs, and because current Aegis captures show that they still use fixpos, keep using that for now.
return clif_slide(bl, bl->x, bl->y); return clif_fixpos(bl);
// return clif_slide(bl, bl->x, bl->y);
} }
/*========================================== /*==========================================