fix(Core/Spells): Siphon Bloodgem now channels no matter the player's orientation. (#22143)

This commit is contained in:
avarishd
2025-05-24 21:53:27 +03:00
committed by GitHub
parent 39f6974f7d
commit 2a45d1a26f

View File

@@ -5123,6 +5123,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->Effects[EFFECT_0].Effect = SPELL_EFFECT_SUMMON_OBJECT_SLOT1;
});
// Siphon Bloodgem
ApplySpellFix({ 34367 }, [](SpellInfo* spellInfo)
{
spellInfo->ChannelInterruptFlags &= ~AURA_INTERRUPT_FLAG_TURNING;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];