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