diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/skill.c | 6 | ||||
-rw-r--r-- | src/map/unit.c | 1 |
3 files changed, 8 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index a1669e5b1..d8710b6fc 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -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.
2006/08/18
+ * Fixed HLIF_HEAL healing the homunc instead of the master [Toms]
+ * Fixed HLIF_AVOID not increasing walk speed of master [Toms]
* Fixed the atk_rate (Turtle General Card) bonus not working on
dual-wielders. [Skotlex]
* Made HLIF_HEAL a self skill that auto-selects target to caster's master.
diff --git a/src/map/skill.c b/src/map/skill.c index e1aff8f85..9ed6e7253 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -3732,7 +3732,11 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in clif_skill_nodamage(src,bl,skillid,skilllv, sc_start(bl,type,100,skilllv,skill_get_time(skillid,skilllv))); break; - case HLIF_AVOID: //[orn] + case HLIF_AVOID: + i = skill_get_time(skillid,skilllv); + clif_skill_nodamage(src,bl,skillid,skilllv,sc_start(src,type,100,skilllv,i)); + clif_skill_nodamage(src,src,skillid,skilllv,sc_start(&hd->master->bl,type,100,skilllv,i)); + break; case HAMI_DEFENCE: i = skill_get_time(skillid,skilllv); clif_skill_nodamage(src,bl,skillid,skilllv, diff --git a/src/map/unit.c b/src/map/unit.c index bed5a93d2..52f5d3fb1 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -790,6 +790,7 @@ int unit_skilluse_id2(struct block_list *src, int target_id, int skill_num, int case HAMI_CASTLE: target = battle_get_master(src); if (!target) return 0; + target_id = target->id; } if(!target && (target=map_id2bl(target_id)) == NULL ) |