Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff --git a/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/boss_devourer_of_souls.cpp b/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/boss_devourer_of_souls.cpp
- index 734ee53..53b22fe 100644
- --- a/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/boss_devourer_of_souls.cpp
- +++ b/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/boss_devourer_of_souls.cpp
- @@ -240,6 +240,17 @@ class boss_devourer_of_souls : public CreatureScript
- threeFaced = false;
- }
- + void SpellHit(Unit* caster, SpellEntry const* spell)
- + {
- + if (me->GetCurrentSpell(CURRENT_GENERIC_SPELL))
- + if ((me->GetCurrentSpell(CURRENT_GENERIC_SPELL)->m_spellInfo->Id == 68982) || // Призрачный взрыв н
- + (me->GetCurrentSpell(CURRENT_GENERIC_SPELL)->m_spellInfo->Id == 70322)) // г
- + for (uint8 i = 0; i < 3; ++i)
- + if (spell->Effect[i] == SPELL_EFFECT_INTERRUPT_CAST)
- + me->InterruptSpell(CURRENT_GENERIC_SPELL, false);
- +
- + }
- +
- uint32 GetData(uint32 type)
- {
- if (type == DATA_THREE_FACED)
Advertisement
Add Comment
Please, Sign In to add comment