diff options
| author | joschiwald <joschiwald@online.de> | 2013-09-05 00:59:22 +0200 |
|---|---|---|
| committer | joschiwald <joschiwald@online.de> | 2013-09-05 00:59:22 +0200 |
| commit | 7ef1f0738be5a063602ec75162626da34e4ecbcf (patch) | |
| tree | 3d69d3a12502ec21fcce7970ebc0b38bdf817abe /src/server/scripts/Spells | |
| parent | d5d0802262637d5b32555ec453b2034b6be247b8 (diff) | |
Core/Battlegrounds/IoC: fix fortress teleport pads
(and replace a hack with an other hack)
Closes #5846
Closes #7993
Ref #8984
Diffstat (limited to 'src/server/scripts/Spells')
| -rw-r--r-- | src/server/scripts/Spells/spell_quest.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/server/scripts/Spells/spell_quest.cpp b/src/server/scripts/Spells/spell_quest.cpp index 8804410d814..919046d3c38 100644 --- a/src/server/scripts/Spells/spell_quest.cpp +++ b/src/server/scripts/Spells/spell_quest.cpp @@ -2072,8 +2072,6 @@ class spell_q12641_death_comes_from_on_high : public SpellScriptLoader { uint32 spellId = 0; - TC_LOG_DEBUG(LOG_FILTER_SPELLS_AURAS, "spell_q12641_death_comes_from_on_high:: Caster: %s (GUID: %u) On Hit Target: Creature: %s (Entry: %u GUID: %u)", - GetOriginalCaster()->GetName().c_str(), GetOriginalCaster()->GetGUIDLow(), GetHitCreature()->GetName().c_str(), GetHitCreature()->GetEntry(), GetHitCreature()->GetGUIDLow()); switch (GetHitCreature()->GetEntry()) { case NPC_NEW_AVALON_FORGE: @@ -2092,7 +2090,7 @@ class spell_q12641_death_comes_from_on_high : public SpellScriptLoader return; } - GetOriginalCaster()->CastSpell((Unit*)NULL, spellId, true); + GetCaster()->CastSpell((Unit*)NULL, spellId, true); } void Register() OVERRIDE |
