diff options
Diffstat (limited to 'src/game/Spell.cpp')
-rw-r--r-- | src/game/Spell.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index cbde7b7023c..8d8f47f6379 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -2284,6 +2284,8 @@ void Spell::handle_immediate() int32 duration = GetSpellDuration(m_spellInfo); if (duration) { + //apply haste mods + m_caster->ModSpellCastTime(m_spellInfo, duration); // Apply duration mod if(Player* modOwner = m_caster->GetSpellModOwner()) modOwner->ApplySpellMod(m_spellInfo->Id, SPELLMOD_DURATION, duration); |