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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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];