diff options
| author | joschiwald <joschiwald.trinity@gmail.com> | 2016-01-16 23:32:34 +0100 | 
|---|---|---|
| committer | joschiwald <joschiwald.trinity@gmail.com> | 2016-01-16 23:32:34 +0100 | 
| commit | 6b3468f48a6704c2b7c33c9544f638ea8e44fdc9 (patch) | |
| tree | 9c285f674ef5b88064584ba01172fc0d57db2727 /src/server/game/Spells/SpellMgr.cpp | |
| parent | 2e595543bbae1bf3987fa679eed79625d450dd51 (diff) | |
Scripts/Spells: fixed Beacon of Light
Diffstat (limited to 'src/server/game/Spells/SpellMgr.cpp')
| -rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 9 | 
1 files changed, 6 insertions, 3 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index e96ed8c6799..e0b9bf53b63 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -969,10 +969,12 @@ bool SpellMgr::CanSpellTriggerProcOnEvent(SpellProcEntry const& procEntry, ProcE      // check spell family name/flags (if set) for spells      if (eventInfo.GetTypeMask() & (PERIODIC_PROC_FLAG_MASK | SPELL_PROC_FLAG_MASK | PROC_FLAG_DONE_TRAP_ACTIVATION))      { -        if (procEntry.spellFamilyName && eventInfo.GetSpellInfo() && (procEntry.spellFamilyName != eventInfo.EnsureSpellInfo()->SpellFamilyName)) +        SpellInfo const* eventSpellInfo = eventInfo.GetSpellInfo(); + +        if (procEntry.spellFamilyName && eventSpellInfo && (procEntry.spellFamilyName != eventSpellInfo->SpellFamilyName))              return false; -        if (procEntry.spellFamilyMask && eventInfo.GetSpellInfo() && !(procEntry.spellFamilyMask & eventInfo.EnsureSpellInfo()->SpellFamilyFlags)) +        if (procEntry.spellFamilyMask && eventSpellInfo && !(procEntry.spellFamilyMask & eventSpellInfo->SpellFamilyFlags))              return false;      } @@ -3332,6 +3334,8 @@ void SpellMgr::LoadSpellInfoCorrections()                  spellInfo->Attributes |= SPELL_ATTR0_PASSIVE;                  break;              case 17364: // Stormstrike +            case 48278: // Paralyze +            case 53651: // Light's Beacon                  spellInfo->AttributesEx3 |= SPELL_ATTR3_STACK_FOR_DIFF_CASTERS;                  break;              case 51798: // Brewfest - Relay Race - Intro - Quest Complete @@ -3565,7 +3569,6 @@ void SpellMgr::LoadSpellInfoCorrections()                  spellInfo->AreaGroupId = 0; // originally, these require area 4522, which is... outside of Icecrown Citadel                  break;              case 70602: // Corruption -            case 48278: // Paralyze                  spellInfo->AttributesEx3 |= SPELL_ATTR3_STACK_FOR_DIFF_CASTERS;                  break;              case 70715: // Column of Frost (visual marker)  | 
