diff --git a/src/map/battle.cpp b/src/map/battle.cpp index a6564c7da2..03e74746dd 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -3240,7 +3240,11 @@ static bool attack_ignores_def(struct Damage* wd, struct block_list *src, struct #endif if (sc && sc->getSCE(SC_FUSION)) return true; - else if (skill_id != CR_GRANDCROSS && skill_id != NPC_GRANDDARKNESS) + + if (skill_id == RK_WINDCUTTER && sd && sd->status.weapon == W_2HSWORD) + return true; + + if (skill_id != CR_GRANDCROSS && skill_id != NPC_GRANDDARKNESS) { //Ignore Defense? if (sd && (sd->right_weapon.ignore_def_ele & (1<def_ele) || sd->right_weapon.ignore_def_ele & (1<right_weapon.ignore_def_race & (1<race) || sd->right_weapon.ignore_def_race & (1<status.weapon == W_2HSWORD) - return true; + } return nk[NK_IGNOREDEFENSE] != 0; }