mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-23 13:46:24 +00:00
fix(Core/Spells): Beacon of Light should not cause combat. (#7321)
* fix(Core/Spells): Beacon of Light should not cause combat. Fixed #7276
This commit is contained in:
@@ -7271,6 +7271,12 @@ void SpellMgr::LoadDbcDataCorrections()
|
||||
spellInfo->Speed = 0.0f;
|
||||
});
|
||||
|
||||
// 53651 Light's Beacon
|
||||
ApplySpellFix({ 53651 }, [](SpellEntry* spellInfo)
|
||||
{
|
||||
spellInfo->AttributesEx |= SPELL_ATTR1_NO_THREAT;
|
||||
});
|
||||
|
||||
for (uint32 i = 0; i < sSpellStore.GetNumRows(); ++i)
|
||||
{
|
||||
SpellEntry* spellInfo = (SpellEntry*)sSpellStore.LookupEntry(i);
|
||||
|
||||
Reference in New Issue
Block a user