From 9d59b3def4bb82ddd363f39c61716f2b1c763796 Mon Sep 17 00:00:00 2001 From: KayenEQ Date: Thu, 25 Nov 2021 08:32:46 -0500 Subject: [PATCH] [Spells] Bard AA clicks should not receive song modifiers. (#1824) --- zone/client_mods.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zone/client_mods.cpp b/zone/client_mods.cpp index ae2e6487a..307623b0f 100644 --- a/zone/client_mods.cpp +++ b/zone/client_mods.cpp @@ -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;