diff options
author | dr.skull <dr.skull@centrum.sk> | 2011-12-14 17:26:24 +0100 |
---|---|---|
committer | dr.skull <dr.skull@centrum.sk> | 2011-12-14 17:27:39 +0100 |
commit | 2cd57b53e63614185d8b57719d369d7c92c6f896 (patch) | |
tree | c1469cf05599b86b1a311125bed4af6d8e28966f /src | |
parent | d6ebfa993bd774135b255f1a6560a8aa22237b89 (diff) |
Shaman is the caster of Fire Nova not totem.
Signed-off-by: dr.skull <dr.skull@centrum.sk>
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Spells/spell_shaman.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_shaman.cpp b/src/server/scripts/Spells/spell_shaman.cpp index 76dac9b59f1..98e5bc8368a 100644 --- a/src/server/scripts/Spells/spell_shaman.cpp +++ b/src/server/scripts/Spells/spell_shaman.cpp @@ -125,7 +125,7 @@ class spell_sha_fire_nova : public SpellScriptLoader { Creature* totem = caster->GetMap()->GetCreature(caster->m_SummonSlot[1]); if (totem && totem->isTotem()) - totem->CastSpell(totem, spellId, true); + caster->CastSpell(totem, spellId, true); } } |