aboutsummaryrefslogtreecommitdiff
path: root/src/game/Spell.cpp
diff options
context:
space:
mode:
authormegamage <none@none>2009-02-23 09:54:48 -0600
committermegamage <none@none>2009-02-23 09:54:48 -0600
commit7ca5b9a8e7e5cf8dba02dc6a4a6d027b5892fb89 (patch)
treec4386ed4746ff6ba1b51bbe2ebcf3a33a203c32f /src/game/Spell.cpp
parent08b760e953fb1a1cdb798d47b8e7681d8422345a (diff)
*Remove possessed summons when aura is cancelled but not when channelling is canncelled. This fix Eye of Kilrogg.
--HG-- branch : trunk
Diffstat (limited to 'src/game/Spell.cpp')
-rw-r--r--src/game/Spell.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp
index f74bf664c5c..90a22d963e9 100644
--- a/src/game/Spell.cpp
+++ b/src/game/Spell.cpp
@@ -2148,25 +2148,6 @@ void Spell::cancel()
finish(false);
- // Unsummon summon as possessed creatures on spell cancel
- if(m_caster->GetTypeId() == TYPEID_PLAYER)
- {
- for(int i = 0; i < 3; ++i)
- {
- if(m_spellInfo->Effect[i] == SPELL_EFFECT_SUMMON &&
- (m_spellInfo->EffectMiscValueB[i] == SUMMON_TYPE_POSESSED ||
- m_spellInfo->EffectMiscValueB[i] == SUMMON_TYPE_POSESSED2 ||
- m_spellInfo->EffectMiscValueB[i] == SUMMON_TYPE_POSESSED3))
- {
- ((Player*)m_caster)->StopCastingCharm();
- break;
- // Possession is removed in the UnSummon function
- //if (m_caster->GetCharm())
- // ((TemporarySummon*)m_caster->GetCharm())->UnSummon();
- }
- }
- }
-
m_caster->RemoveDynObject(m_spellInfo->Id);
m_caster->RemoveGameObject(m_spellInfo->Id,true);
}