fix(Core/Spells): Change MiscValues of Brothers Bronzebeard summon spells so that they work correctly (#24496)
This commit is contained in:
parent
328ec46db7
commit
d4bea2d3e0
1 changed files with 10 additions and 0 deletions
|
|
@ -5180,6 +5180,16 @@ void SpellMgr::LoadSpellInfoCorrections()
|
|||
spellInfo->AttributesEx4 |= SPELL_ATTR4_IGNORE_DAMAGE_TAKEN_MODIFIERS;
|
||||
});
|
||||
|
||||
// The Brothers Bronzebeard
|
||||
ApplySpellFix({
|
||||
56675, // Summon Brann Bronzebeard
|
||||
56676, // Summon Yorg Stormheart
|
||||
56697, // Summon Magni Bronzebeard
|
||||
}, [](SpellInfo* spellInfo)
|
||||
{
|
||||
spellInfo->Effects[EFFECT_0].MiscValueB = 64;
|
||||
});
|
||||
|
||||
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
|
||||
{
|
||||
SpellInfo* spellInfo = mSpellInfoMap[i];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue