diff options
Diffstat (limited to 'src/game/Spell.cpp')
-rw-r--r-- | src/game/Spell.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index c863e8cc933..912bea7e89b 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -2297,7 +2297,8 @@ void Spell::prepare(SpellCastTargets const* targets, AuraEffect* triggeredByAura ReSetTimer(); //Containers for channeled spells have to be set //TODO:Apply this to all casted spells if needed - if(m_IsTriggeredSpell && !IsChanneledSpell(m_spellInfo)) + // Why check m_casttime? 29350: channelled triggers channelled + if(m_IsTriggeredSpell && (!IsChanneledSpell(m_spellInfo) || !m_casttime)) cast(true); else { |