diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-06-16 23:16:07 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-06-16 23:16:07 +0200 |
commit | 3367dd5be93b8e63dce41fe6e303aa8ec41a43db (patch) | |
tree | 7521c02320496be71c7ab69c0d276b94059b4a41 | |
parent | b21749a68c19fb1dc6a7d72fc85f6d148b3b753f (diff) |
Core: Fix build and some fails
-rw-r--r-- | src/server/scripts/Spells/spell_shaman.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/server/scripts/Spells/spell_shaman.cpp b/src/server/scripts/Spells/spell_shaman.cpp index e7853d5f85c..c3bc9c6466a 100644 --- a/src/server/scripts/Spells/spell_shaman.cpp +++ b/src/server/scripts/Spells/spell_shaman.cpp @@ -377,10 +377,10 @@ class spell_sha_feedback : public SpellScriptLoader { if (!sSpellMgr->GetSpellInfo(SPELL_SHAMAN_ELEMENTAL_MASTERY)) return false; - return true; + return true; } - void HandleEffectProc(AuraEffect const* aurEff, ProcEventInfo& eventInfo) + void HandleEffectProc(AuraEffect const* aurEff, ProcEventInfo& /*eventInfo*/) { PreventDefaultAction(); // will prevent default effect execution if (Player* target = GetTarget()->ToPlayer()) @@ -389,7 +389,6 @@ class spell_sha_feedback : public SpellScriptLoader void Register() { - DoCheckProc += AuraCheckProcFn(spell_sha_feedback_AuraScript::DoCheck); OnEffectProc += AuraEffectProcFn(spell_sha_feedback_AuraScript::HandleEffectProc, EFFECT_0, SPELL_AURA_DUMMY); } }; @@ -638,7 +637,7 @@ class spell_sha_lava_surge : public SpellScriptLoader { if (!sSpellMgr->GetSpellInfo(SPELL_SHAMAN_LAVA_SURGE)) return false; - return true; + return true; } void HandleEffectProc(AuraEffect const* /*aurEff*/, ProcEventInfo& /*eventInfo*/) @@ -673,7 +672,7 @@ class spell_sha_lava_surge_proc : public SpellScriptLoader { if (!sSpellMgr->GetSpellInfo(SPELL_SHAMAN_LAVA_BURST)) return false; - return true; + return true; } bool Load() |