fix(Core/Spells): Flame Wave (#19144)
* fix(Core/Spells): Flame Wave * ) * . flamewave faction id https://github.com/TrinityCore/TrinityCore/blame/3365e6a4b84f59cca5f7ef5fca71fb3979697e52/sql/old/9.x/world/21081_2021_10_15/2021_09_29_04_world_2018_06_17_04_world.sql#L46 Co-Authored-By: Carlos Morales <carlos.morales@insmet.cu> * lol --------- Co-authored-by: Carlos Morales <carlos.morales@insmet.cu>
This commit is contained in:
parent
f70e69cacf
commit
c54fd66c73
2 changed files with 15 additions and 0 deletions
|
|
@ -4798,6 +4798,14 @@ void SpellMgr::LoadSpellInfoCorrections()
|
|||
spellInfo->Effects[EFFECT_0].Amplitude = 9000;
|
||||
});
|
||||
|
||||
// Flame Wave
|
||||
ApplySpellFix({ 33800 }, [](SpellInfo* spellInfo)
|
||||
{
|
||||
spellInfo->Effects[EFFECT_1].Effect = SPELL_EFFECT_APPLY_AURA;
|
||||
spellInfo->Effects[EFFECT_1].ApplyAuraName = SPELL_AURA_PERIODIC_TRIGGER_SPELL;
|
||||
spellInfo->Effects[EFFECT_1].Amplitude = 500;
|
||||
});
|
||||
|
||||
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
|
||||
{
|
||||
SpellInfo* spellInfo = mSpellInfoMap[i];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue