Skip to content

Commit

Permalink
Merge pull request #1520 from cyilcode/hotfix/issue1378
Browse files Browse the repository at this point in the history
Prevented Phatasmic Arrow to knock back targets that would die from i…
  • Loading branch information
secretdataz committed Sep 3, 2016
2 parents 3607efd + 0fe730d commit 443a2b0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/map/skill.c
Expand Up @@ -2942,6 +2942,9 @@ void skill_attack_blow(struct block_list *src, struct block_list *dsrc, struct b
else
dir = map_calc_dir(target, skill_area_temp[4], skill_area_temp[5]);
break;
case HT_PHANTASMIC: // issue #1378
if (status_get_hp(target) - damage <= 0) return;
break;
}

// Blown-specific handling
Expand Down

0 comments on commit 443a2b0

Please sign in to comment.