fix(Core/Spells): Siphon Bloodgem now channels no matter the player's orientation. (#22143)
This commit is contained in:
parent
39f6974f7d
commit
2a45d1a26f
1 changed files with 6 additions and 0 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue