aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKandera <KanderaDev@gmail.com>2012-06-08 11:01:27 -0400
committerKandera <KanderaDev@gmail.com>2012-06-08 11:01:27 -0400
commit69bf716c1b24ccac1b4a6a226467f731e3ce369c (patch)
tree22e1f1374015fec2152c4bbdf99379f42ecb3a32
parente9feb0e3e2e3f1b7069dfe156f3063e9df39d357 (diff)
Core/Spells: set default multiplier for scourge strike bonus damage to 1.
-rw-r--r--src/server/scripts/Spells/spell_dk.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/server/scripts/Spells/spell_dk.cpp b/src/server/scripts/Spells/spell_dk.cpp
index 7a4b8f273d2..c33ca548d73 100644
--- a/src/server/scripts/Spells/spell_dk.cpp
+++ b/src/server/scripts/Spells/spell_dk.cpp
@@ -383,6 +383,12 @@ class spell_dk_scourge_strike : public SpellScriptLoader
PrepareSpellScript(spell_dk_scourge_strike_SpellScript);
float multiplier;
+ bool Load()
+ {
+ multiplier = 1.0f;
+ return true;
+ }
+
bool Validate(SpellInfo const* /*spellEntry*/)
{
if (!sSpellMgr->GetSpellInfo(DK_SPELL_SCOURGE_STRIKE_TRIGGERED))