Make SPECATK_QUAD uncheesable

Live seems to have w kinds of "quads" one is an innate DW
but people found out you could cheese them so luclin+ you can't anymore

so INNATE_DW you can give the NPC a 2h and they will stop quadding
QUAD they will accept the 2h but still quad
This commit is contained in:
Michael Cook (mackal) 2015-07-07 17:20:37 -04:00
parent e70e11f86c
commit 3455d70ca2

View File

@ -5027,7 +5027,8 @@ void NPC::SetAttackTimer()
//special offhand stuff
if (i == MainSecondary) {
if(!CanThisClassDualWield() || HasTwoHanderEquipped()) {
// SPECATK_QUAD is uncheesable
if(!CanThisClassDualWield() || (HasTwoHanderEquipped() && !GetSpecialAbility(SPECATK_QUAD))) {
attack_dw_timer.Disable();
continue;
}