diff options
| author | maanuel <none@none> | 2009-12-27 18:01:34 -0300 | 
|---|---|---|
| committer | maanuel <none@none> | 2009-12-27 18:01:34 -0300 | 
| commit | e2a6e6dd24e0bb9c23df8a566a0754e22c2e0f84 (patch) | |
| tree | 63f8165b4351a258fe93dae493f75fe686707344 | |
| parent | 3fa5ec16b0593c8b7a31c76762c1d90ee060429e (diff) | |
Support for spell 67751 used by Argent Confessor Paletress. Thanks to QAston and Gyullo.
--HG--
branch : trunk
| -rw-r--r-- | src/game/SpellEffects.cpp | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 8b8b5749481..5e5f5db8267 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -5686,6 +5686,14 @@ void Spell::EffectScriptEffect(uint32 effIndex)                      unitTarget->CastSpell(unitTarget,67729,false); //Explode                      break;                  } +                case 66545: //Summon Memory +                { +                    uint8 uiRandom = urand(0,25); +                    uint32 uiSpells[26] = {66704,66705,66706,66707,66709,66710,66711,66712,66713,66714,66715,66708,66708,66691,66692,66694,66695,66696,66697,66698,66699,66700,66701,66702,66703,66543}; + +                    m_caster->CastSpell(m_caster,uiSpells[uiRandom],true); +                    break; +                }              }              break;          }  | 
