From fd989cdbc84447a026d084e99ac258f0f2eea477 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Mon, 22 Jun 2015 00:08:21 -0400 Subject: [PATCH] Add back in the bard song focus check But also allowed focusSpellDuration through for that AA --- zone/spell_effects.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zone/spell_effects.cpp b/zone/spell_effects.cpp index 71740e589..9134e8ff7 100644 --- a/zone/spell_effects.cpp +++ b/zone/spell_effects.cpp @@ -5190,6 +5190,9 @@ uint16 Client::GetSympatheticFocusEffect(focusType type, uint16 spell_id) { int16 Client::GetFocusEffect(focusType type, uint16 spell_id) { + if (IsBardSong(spell_id) && type != focusFcBaseEffects && type != focusSpellDuration) + return 0; + int16 realTotal = 0; int16 realTotal2 = 0; int16 realTotal3 = 0;