From 6e83d85081e03ba8d3af7dbee836f2ea4760cf12 Mon Sep 17 00:00:00 2001 From: skotlex Date: Tue, 2 May 2006 21:21:00 +0000 Subject: - Removed the unit_can_move checks in skill cast-end, they should be performed in skill_check_require when the skill's state is move_enabled. - Changed extremity fist's state to move_enabled, the explosion spirits check is now hardcoded. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6452 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/skill.c | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to 'src') diff --git a/src/map/skill.c b/src/map/skill.c index 33dc7b439..162f47fd7 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -2591,8 +2591,6 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl,int s short x, y; x = bl->x; y = bl->y; - if (skillid == TK_JUMPKICK && !unit_can_move(src)) - break; if (src->x < bl->x) x--; else if (src->x > bl->x) x++; if (src->y < bl->y) y--; @@ -2677,10 +2675,6 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl,int s if(!check_distance_bl(src, bl, 2)) { //Need to move to target. int dx,dy; - if (!unit_can_move(src)) { //You need to be able to move to attack/reach target. - if (sd) clif_skill_fail(sd,skillid,0,0); - break; - } dx = bl->x - src->x; dy = bl->y - src->y; if(dx > 0) dx++; @@ -4715,14 +4709,8 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in { int x,y, dir = unit_getdir(src); - if (!unit_can_move(src)) { - map_freeblock_unlock(); - return 1; - } - x = src->x + dirx[dir]*skilllv*2; y = src->y + diry[dir]*skilllv*2; - clif_skill_nodamage(src,bl,TK_HIGHJUMP,skilllv,1); if(map_getcell(src->m,x,y,CELL_CHKPASS)) { @@ -7822,6 +7810,10 @@ int skill_check_condition(struct map_session_data *sd,int skill, int lv, int typ case MO_EXTREMITYFIST: // ˆ¢?C—…”e–PŒ? // if(sd->sc.data[SC_EXTREMITYFIST].timer != -1) //To disable Asura during the 5 min skill block uncomment this... // return 0; + if(sd->sc.data[SC_EXPLOSIONSPIRITS].timer == -1) { + clif_skill_fail(sd,skill,0,0); + return 0; + } if(sd->sc.data[SC_BLADESTOP].timer!=-1) spiritball--; else if (sd->sc.data[SC_COMBO].timer != -1) { -- cgit v1.2.3-70-g09d2