From d9cab4820ab2161a1d5faf536ad76e1d22c56766 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Fri, 29 May 2015 21:16:30 -0400 Subject: [PATCH] More focus messages --- zone/spell_effects.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zone/spell_effects.cpp b/zone/spell_effects.cpp index b11b21403..3336026c7 100644 --- a/zone/spell_effects.cpp +++ b/zone/spell_effects.cpp @@ -5399,6 +5399,7 @@ int16 Client::GetFocusEffect(focusType type, uint16 spell_id) { if (realTotal != 0 && UsedItem) { // there are a crap ton more of these, I was able to verify these ones though + // the RNG effective ones appear to have a different message for failing to focus uint32 string_id = BEGINS_TO_GLOW; // this is really just clicky message ... switch (type) { case focusSpellHaste: @@ -5422,6 +5423,9 @@ int16 Client::GetFocusEffect(focusType type, uint16 spell_id) { case focusImprovedHeal: string_id = FEEDS_WITH_POWER; break; + case focusReagentCost: + string_id = BEGINS_TO_SHINE; + break; default: break; }