aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts
diff options
context:
space:
mode:
authorUlduar2 <Ulduar2@users.noreply.github.com>2017-04-23 19:23:28 +0600
committerShauren <shauren.trinity@gmail.com>2017-04-23 15:23:28 +0200
commit7b4bdc6b8f5f9adc677165583c700774d0859869 (patch)
tree506aad0b59c757ac076f1106cbaf1bf816626eef /src/server/scripts
parentec83e3faf339be9e8129889859de464cfc47a1ed (diff)
Core/Spells: Add duration argument to Unit::SendPlaySpellVisualKit (#19487)
Diffstat (limited to 'src/server/scripts')
-rw-r--r--src/server/scripts/Spells/spell_paladin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_paladin.cpp b/src/server/scripts/Spells/spell_paladin.cpp
index 56f90d612fd..020c8fc9e8e 100644
--- a/src/server/scripts/Spells/spell_paladin.cpp
+++ b/src/server/scripts/Spells/spell_paladin.cpp
@@ -407,7 +407,7 @@ class spell_pal_divine_storm : public SpellScriptLoader
void HandleOnCast()
{
Unit* caster = GetCaster();
- caster->SendPlaySpellVisualKit(PALADIN_VISUAL_KIT_DIVINE_STORM, 0);
+ caster->SendPlaySpellVisualKit(PALADIN_VISUAL_KIT_DIVINE_STORM, 0, 0);
}
void HandleDummy(SpellEffIndex /* effIndex */)