diff options
author | akrus <akrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-03-24 08:32:12 +0000 |
---|---|---|
committer | akrus <akrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-03-24 08:32:12 +0000 |
commit | b634ea9bd867be4be306fbe41b97f71e40c254b1 (patch) | |
tree | d9001b2da70f207de228e9654bbd192085ad0740 | |
parent | 6910817b3169e909c1671c00b515dd48f844cce6 (diff) | |
download | hercules-b634ea9bd867be4be306fbe41b97f71e40c254b1.tar.gz hercules-b634ea9bd867be4be306fbe41b97f71e40c254b1.tar.bz2 hercules-b634ea9bd867be4be306fbe41b97f71e40c254b1.tar.xz hercules-b634ea9bd867be4be306fbe41b97f71e40c254b1.zip |
Lol :x
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13616 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | src/map/unit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index faf6ec3e3..c98ddef1a 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -1071,7 +1071,7 @@ int unit_skilluse_id2(struct block_list *src, int target_id, short skill_num, sh ud->canact_tick = tick + casttime + 100; if ( sd ) - clif_status_change(bl, SI_ACTIONDELAY, 1, ud->canact_tick); + clif_status_change(src, SI_ACTIONDELAY, 1, ud->canact_tick); ud->skilltarget = target_id; ud->skillx = 0; ud->skilly = 0; @@ -1178,7 +1178,7 @@ int unit_skilluse_pos2( struct block_list *src, short skill_x, short skill_y, sh ud->canact_tick = tick + casttime + 100; if ( sd ) - clif_status_change(bl, SI_ACTIONDELAY, 1, ud->canact_tick); + clif_status_change(src, SI_ACTIONDELAY, 1, ud->canact_tick); ud->skillid = skill_num; ud->skilllv = skill_lv; ud->skillx = skill_x; @@ -1596,7 +1596,7 @@ int unit_skillcastcancel(struct block_list *bl,int type) ud->canact_tick = tick; if ( sd ) - clif_status_change(bl, SI_ACTIONDELAY, 1, ud->canact_tick); + clif_status_change(src, SI_ACTIONDELAY, 1, ud->canact_tick); if(type&1 && sd) skill = sd->skillid_old; |