fix(DB/Core/Misc): More adjustments to BWL (#11154)
This commit is contained in:
parent
3a69d36a99
commit
540b5fcaa4
3 changed files with 15 additions and 2 deletions
|
|
@ -4168,6 +4168,11 @@ void SpellMgr::LoadSpellInfoCorrections()
|
|||
spellInfo->AttributesEx2 |= SPELL_ATTR2_IGNORE_LINE_OF_SIGHT;
|
||||
});
|
||||
|
||||
ApplySpellFix({ 22247 }, [](SpellInfo* spellInfo)
|
||||
{
|
||||
spellInfo->AttributesCu |= SPELL_ATTR0_CU_DONT_BREAK_STEALTH;
|
||||
});
|
||||
|
||||
// Manastorm
|
||||
ApplySpellFix({ 21097 }, [](SpellInfo* spellInfo)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -124,7 +124,7 @@ public:
|
|||
|
||||
events.ScheduleEvent(EVENT_CLEAVE, 10000);
|
||||
events.ScheduleEvent(EVENT_FLAME_BREATH, 15000);
|
||||
events.ScheduleEvent(EVENT_FIRE_NOVA, 20000);
|
||||
events.ScheduleEvent(EVENT_FIRE_NOVA, 5000);
|
||||
events.ScheduleEvent(EVENT_TAIL_SWEEP, 11000);
|
||||
events.ScheduleEvent(EVENT_BURNING_ADRENALINE, 15000);
|
||||
}
|
||||
|
|
@ -220,7 +220,7 @@ public:
|
|||
break;
|
||||
case EVENT_FIRE_NOVA:
|
||||
DoCastVictim(SPELL_FIRE_NOVA);
|
||||
events.ScheduleEvent(EVENT_FIRE_NOVA, 15000);
|
||||
events.ScheduleEvent(EVENT_FIRE_NOVA, urand(3000, 5000));
|
||||
break;
|
||||
case EVENT_TAIL_SWEEP:
|
||||
DoCastAOE(SPELL_TAIL_SWEEP);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue