Core/Script: Defensive stance debuff state

Arregla que esté el modo debuff cuando relogueas con el efecto
This commit is contained in:
Sistemas
2026-05-30 01:36:47 +02:00
committed by GitHub
parent e88e675045
commit 480adb346a
+7
View File
@@ -5299,6 +5299,13 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx4 |= SPELL_ATTR4_AURA_IS_BUFF;
});
// Defensive Stance (absorb effect has bp=0 so IsPositiveEffect returns false, causing debuff display on relog)
ApplySpellFix({ 386208 }, [](SpellInfo* spellInfo)
{
spellInfo->AttributesEx4 |= SPELL_ATTR4_AURA_IS_BUFF;
});
// TODO: temporary, remove with dragonriding
ApplySpellFix({ 404468 }, [](SpellInfo* spellInfo)
{