mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-04 15:43:52 +00:00
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:
parent
e70e11f86c
commit
3455d70ca2
@ -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;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user