mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-27 07:36:23 +00:00
fix(Core/Spells): Change MiscValues of Brothers Bronzebeard summon spells so that they work correctly (#24496)
This commit is contained in:
@@ -5180,6 +5180,16 @@ void SpellMgr::LoadSpellInfoCorrections()
|
|||||||
spellInfo->AttributesEx4 |= SPELL_ATTR4_IGNORE_DAMAGE_TAKEN_MODIFIERS;
|
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)
|
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
|
||||||
{
|
{
|
||||||
SpellInfo* spellInfo = mSpellInfoMap[i];
|
SpellInfo* spellInfo = mSpellInfoMap[i];
|
||||||
|
|||||||
Reference in New Issue
Block a user