Misc fixes/missed stuff
This commit is contained in:
@@ -3543,6 +3543,7 @@ namespace Game.Entities
|
||||
});
|
||||
|
||||
ApplySpellFix(new[] {
|
||||
15538, // Gout of Flame
|
||||
42490, // Energized!
|
||||
42492, // Cast Energized
|
||||
43115 // Plague Vial
|
||||
@@ -3656,6 +3657,12 @@ namespace Game.Entities
|
||||
spellInfo.RecoveryTime = 20000;
|
||||
});
|
||||
|
||||
// Summon Frigid Bones
|
||||
ApplySpellFix(new[] { 53525 }, spellInfo =>
|
||||
{
|
||||
spellInfo.DurationEntry = CliDB.SpellDurationStorage.LookupByKey(4); // 2 minutes
|
||||
});
|
||||
|
||||
//
|
||||
// VIOLET HOLD SPELLS
|
||||
//
|
||||
@@ -4260,6 +4267,13 @@ namespace Game.Entities
|
||||
spellInfo.AttributesEx3 |= SpellAttr3.NoInitialAggro;
|
||||
});
|
||||
|
||||
// Spore - Spore Visual
|
||||
ApplySpellFix(new[] { 42525 }, spellInfo =>
|
||||
{
|
||||
spellInfo.AttributesEx3 |= SpellAttr3.DeathPersistent;
|
||||
spellInfo.AttributesEx2 |= SpellAttr2.CanTargetDead;
|
||||
});
|
||||
|
||||
//
|
||||
// FIRELANDS SPELLS
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user