diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2017-06-21 14:17:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-21 14:17:43 +0200 |
commit | c292bcb96f9c17642a38293f72c255a6480a3ad5 (patch) | |
tree | 26db789866c2a4f4b98b8a7ddb8343238b820ecb | |
parent | a9bf342ae6eb2fed7b6f22ac0fec4a53c8352b40 (diff) |
Fix warning.
-rw-r--r-- | src/server/scripts/Spells/spell_dk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_dk.cpp b/src/server/scripts/Spells/spell_dk.cpp index 19f22019aab..0edaa189e8e 100644 --- a/src/server/scripts/Spells/spell_dk.cpp +++ b/src/server/scripts/Spells/spell_dk.cpp @@ -923,7 +923,7 @@ class spell_dk_unholy_blight : public SpellScriptLoader { PrepareSpellScript(spell_dk_unholy_blight_SpellScript); - bool Validate(SpellInfo const* spellInfo) override + bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo({ SPELL_DK_FROST_FEVER, SPELL_DK_BLOOD_PLAGUE }); } |