[Spells] Bard AA clicks should not receive song modifiers. (#1824)

This commit is contained in:
KayenEQ 2021-11-25 08:32:46 -05:00 committed by GitHub
parent a6f5bf72be
commit 9d59b3def4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1517,6 +1517,11 @@ uint32 Mob::GetInstrumentMod(uint16 spell_id)
}
return 10;
}
//AA's click effects that use instrument/singing skills don't apply modifiers (Confirmed on live 11/24/21 ~Kayen)
if (casting_spell_aa_id) {
return 10;
}
uint32 effectmod = 10;
int effectmodcap = 0;