From 0fe730d9727efe8a48f37c35ffd63a73d9e2821e Mon Sep 17 00:00:00 2001 From: Cem YILMAZ Date: Fri, 26 Aug 2016 17:42:44 +0300 Subject: [PATCH] Prevented Phatasmic Arrow to knock back targets that would die from its attack. #1378 --- src/map/skill.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/map/skill.c b/src/map/skill.c index 0574073a37..06d38fc35d 100755 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -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