- Removed the fixpos packet sending when damaged. Aegis sends no such packet.
- Fixed warp-portal being unusable if it was invoked through an item script. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6522 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
e78ae404f9
commit
e63cc72bd7
@ -4,6 +4,8 @@ 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/05/08
|
2006/05/08
|
||||||
|
* Removed the fixpos packet which is sent whenever you are hit while moving
|
||||||
|
as Aegis doesn't sends this packet neither. [Skotlex]
|
||||||
* ES magic will now put the caster on stun for 0.5 secs regardless of
|
* ES magic will now put the caster on stun for 0.5 secs regardless of
|
||||||
whether the skill-target is a mob or not. [Skotlex]
|
whether the skill-target is a mob or not. [Skotlex]
|
||||||
* Added function clif_party_join_info which sends packet 0x1e9 each time a
|
* Added function clif_party_join_info which sends packet 0x1e9 each time a
|
||||||
|
@ -6244,7 +6244,8 @@ int skill_castend_map( struct map_session_data *sd,int skill_num, const char *ma
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
lv = sd->skillitem==skill_num?sd->menuskill_lv:pc_checkskill(sd,skill_num);
|
//When it's an item-used warp-portal, the skill-lv used is lost.. assume max level.
|
||||||
|
lv = sd->skillitem==skill_num?skill_get_max(skill_num):pc_checkskill(sd,skill_num);
|
||||||
wx = sd->menuskill_lv>>16;
|
wx = sd->menuskill_lv>>16;
|
||||||
wy = sd->menuskill_lv&0xffff;
|
wy = sd->menuskill_lv&0xffff;
|
||||||
|
|
||||||
|
@ -676,9 +676,9 @@ int unit_set_walkdelay(struct block_list *bl, unsigned int tick, int delay, int
|
|||||||
{ //Stop walking, if chasing, readjust timers.
|
{ //Stop walking, if chasing, readjust timers.
|
||||||
if (delay == 1)
|
if (delay == 1)
|
||||||
{ //Minimal delay (walk-delay) disabled. Just stop walking.
|
{ //Minimal delay (walk-delay) disabled. Just stop walking.
|
||||||
unit_stop_walking(bl,1);
|
unit_stop_walking(bl,0);
|
||||||
} else {
|
} else {
|
||||||
unit_stop_walking(bl,3);
|
unit_stop_walking(bl,2);
|
||||||
if(ud->target)
|
if(ud->target)
|
||||||
add_timer(ud->canmove_tick+1, unit_walktobl_sub, bl->id, ud->target);
|
add_timer(ud->canmove_tick+1, unit_walktobl_sub, bl->id, ud->target);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user