Skip to content

Commit

Permalink
Land Protector should have an animation even if you don't have gemsto…
Browse files Browse the repository at this point in the history
…nes (bug:8351)
  • Loading branch information
Michieru committed Sep 20, 2014
1 parent bb16460 commit 60d62f7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/map/skill.c
Original file line number Diff line number Diff line change
Expand Up @@ -9734,9 +9734,11 @@ int skill_castend_pos(int tid, int64 tick, int id, intptr_t data) {

if( sd )
{
if( ud->skill_id != AL_WARP && !skill->check_condition_castend(sd, ud->skill_id, ud->skill_lv) )
if( ud->skill_id != AL_WARP && !skill->check_condition_castend(sd, ud->skill_id, ud->skill_lv) ) {
if( ud->skill_id == SA_LANDPROTECTOR )
clif->skill_poseffect(&sd->bl,ud->skill_id,ud->skill_lv,sd->bl.x,sd->bl.y,tick);
break;
else
}else
skill->consume_requirement(sd,ud->skill_id,ud->skill_lv,1);
}

Expand Down

0 comments on commit 60d62f7

Please sign in to comment.