aboutsummaryrefslogtreecommitdiff
path: root/src/game/SpellHandler.cpp
diff options
context:
space:
mode:
authorgvcoman <none@none>2008-11-21 21:00:45 -0500
committergvcoman <none@none>2008-11-21 21:00:45 -0500
commit063208485700904ebb6a3a77803b9c91d692daf8 (patch)
tree78020748dca9201a1eb735527df51b4d5da927f7 /src/game/SpellHandler.cpp
parent32485bc5d1bbde8f4b5e81d718f0fc0119442294 (diff)
* Added missing part of mangos merge on interrupt channeling on aura cancel
* Removed hacks attempting to do the above only for possessing or farsight spells * Moved summon as possessed unsummoning into more general area in Spell::cancel * Added SQL updates for steam tonk and tonk mine scripts --HG-- branch : trunk
Diffstat (limited to 'src/game/SpellHandler.cpp')
-rw-r--r--src/game/SpellHandler.cpp48
1 files changed, 13 insertions, 35 deletions
diff --git a/src/game/SpellHandler.cpp b/src/game/SpellHandler.cpp
index 6caab76e061..f0d004a0329 100644
--- a/src/game/SpellHandler.cpp
+++ b/src/game/SpellHandler.cpp
@@ -358,49 +358,27 @@ void WorldSession::HandleCancelAuraOpcode( WorldPacket& recvPacket)
if (!spellInfo)
return;
- // Remove possess/charm/sight aura from the possessed/charmed as well
- // TODO: Remove this once the ability to cancel aura sets at once is implemented
- if(_player->GetCharm() || _player->GetFarsightTarget())
+ // not allow remove non positive spells and spells with attr SPELL_ATTR_CANT_CANCEL
+ if(!IsPositiveSpell(spellId) || (spellInfo->Attributes & SPELL_ATTR_CANT_CANCEL))
+ return;
+
+ // channeled spell case (it currently casted then)
+ if(IsChanneledSpell(spellInfo))
{
- for (int i = 0; i < 3; ++i)
+ if(Spell* spell = _player->m_currentSpells[CURRENT_CHANNELED_SPELL])
{
- if (spellInfo->EffectApplyAuraName[i] == SPELL_AURA_MOD_POSSESS ||
- spellInfo->EffectApplyAuraName[i] == SPELL_AURA_MOD_POSSESS_PET ||
- spellInfo->EffectApplyAuraName[i] == SPELL_AURA_MOD_CHARM ||
- spellInfo->EffectApplyAuraName[i] == SPELL_AURA_BIND_SIGHT)
+ if(spell->m_spellInfo->Id==spellId)
{
- // Fix me: creature may be killed during player aura cancel
- _player->RemoveAurasDueToSpellByCancel(spellId);
- if (_player->GetCharm())
- _player->GetCharm()->RemoveAurasDueToSpellByCancel(spellId);
- else if (_player->GetFarsightTarget() && _player->GetFarsightTarget()->GetTypeId() != TYPEID_DYNAMICOBJECT)
- ((Unit*)_player->GetFarsightTarget())->RemoveAurasDueToSpellByCancel(spellId);
- return;
- }
- else if (spellInfo->Effect[i] == SPELL_EFFECT_SUMMON &&
- (spellInfo->EffectMiscValueB[i] == SUMMON_TYPE_POSESSED ||
- spellInfo->EffectMiscValueB[i] == SUMMON_TYPE_POSESSED2 ||
- spellInfo->EffectMiscValueB[i] == SUMMON_TYPE_POSESSED3))
- {
- // Possession is removed in the UnSummon function
- ((TemporarySummon*)_player->GetCharm())->UnSummon();
+ spell->cancel();
+ spell->SetReferencedFromCurrent(false);
+ _player->m_currentSpells[CURRENT_CHANNELED_SPELL] = NULL;
}
}
- }
-
- // not allow remove non positive spells and spells with attr SPELL_ATTR_CANT_CANCEL
- if(!IsPositiveSpell(spellId) || (spellInfo->Attributes & SPELL_ATTR_CANT_CANCEL))
return;
+ }
+ // non channeled case
_player->RemoveAurasDueToSpellByCancel(spellId);
-
- if (spellId == 2584) // Waiting to resurrect spell cancel, we must remove player from resurrect queue
- {
- BattleGround *bg = _player->GetBattleGround();
- if(!bg)
- return;
- bg->RemovePlayerFromResurrectQueue(_player->GetGUID());
- }
}
void WorldSession::HandlePetCancelAuraOpcode( WorldPacket& recvPacket)