From 37b3207788ef247db202717599db1c9b8a926a47 Mon Sep 17 00:00:00 2001 From: mute Date: Thu, 6 Feb 2025 21:49:27 -0800 Subject: [PATCH] Fixes duration for SE_DivineAura --- zone/spell_effects.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/zone/spell_effects.cpp b/zone/spell_effects.cpp index f9e96c00fa..d69046dcb3 100644 --- a/zone/spell_effects.cpp +++ b/zone/spell_effects.cpp @@ -1349,9 +1349,7 @@ bool Mob::SpellEffect(Mob* caster, uint16 spell_id, float partial, int level_ove #ifdef SPELL_EFFECT_SPAM snprintf(effect_desc, _EDLEN, "Invulnerability"); #endif - if (spell_id == 4789 && buffslot > -1) { // Touch of the Divine - Divine Save - buffs[buffslot].ticsremaining = spells[spell_id].buff_duration; - } // Prevent focus/aa buff extension + buffs[buffslot].ticsremaining = spells[spell_id].buff_duration; SetInvul(true); break;