Core/Spells: Remove spell script for druid "Owlkin Frenzy" - is no longer required
This commit is contained in:
@@ -0,0 +1 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_dru_owlkin_frenzy';
|
||||
@@ -595,33 +595,6 @@ class spell_dru_living_seed_proc : public SpellScriptLoader
|
||||
}
|
||||
};
|
||||
|
||||
// 48391 - Owlkin Frenzy
|
||||
class spell_dru_owlkin_frenzy : public SpellScriptLoader
|
||||
{
|
||||
public:
|
||||
spell_dru_owlkin_frenzy() : SpellScriptLoader("spell_dru_owlkin_frenzy") { }
|
||||
|
||||
class spell_dru_owlkin_frenzy_AuraScript : public AuraScript
|
||||
{
|
||||
PrepareAuraScript(spell_dru_owlkin_frenzy_AuraScript);
|
||||
|
||||
void CalculateAmount(AuraEffect const* /*aurEff*/, int32& amount, bool& /*canBeRecalculated*/)
|
||||
{
|
||||
amount = CalculatePct(GetUnitOwner()->GetCreatePowers(POWER_MANA), amount);
|
||||
}
|
||||
|
||||
void Register() OVERRIDE
|
||||
{
|
||||
DoEffectCalcAmount += AuraEffectCalcAmountFn(spell_dru_owlkin_frenzy_AuraScript::CalculateAmount, EFFECT_2, SPELL_AURA_PERIODIC_ENERGIZE);
|
||||
}
|
||||
};
|
||||
|
||||
AuraScript* GetAuraScript() const OVERRIDE
|
||||
{
|
||||
return new spell_dru_owlkin_frenzy_AuraScript();
|
||||
}
|
||||
};
|
||||
|
||||
// -16972 - Predatory Strikes
|
||||
class spell_dru_predatory_strikes : public SpellScriptLoader
|
||||
{
|
||||
@@ -1079,7 +1052,6 @@ void AddSC_druid_spell_scripts()
|
||||
new spell_dru_lifebloom();
|
||||
new spell_dru_living_seed();
|
||||
new spell_dru_living_seed_proc();
|
||||
new spell_dru_owlkin_frenzy();
|
||||
new spell_dru_predatory_strikes();
|
||||
new spell_dru_rip();
|
||||
new spell_dru_savage_defense();
|
||||
|
||||
@@ -1796,6 +1796,7 @@ class spell_gen_increase_stats_buff : public SpellScriptLoader
|
||||
}
|
||||
};
|
||||
|
||||
// -81708 - Lifeblood
|
||||
class spell_gen_lifeblood : public SpellScriptLoader
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -57,7 +57,7 @@ enum MiscSpells
|
||||
SPELL_GENERIC_ARENA_DAMPENING = 74410,
|
||||
SPELL_GENERIC_BATTLEGROUND_DAMPENING = 74411
|
||||
};
|
||||
|
||||
/*
|
||||
// 31850 - Ardent Defender
|
||||
class spell_pal_ardent_defender : public SpellScriptLoader
|
||||
{
|
||||
@@ -133,7 +133,7 @@ class spell_pal_ardent_defender : public SpellScriptLoader
|
||||
return new spell_pal_ardent_defender_AuraScript();
|
||||
}
|
||||
};
|
||||
|
||||
*/
|
||||
// 37877 - Blessing of Faith
|
||||
class spell_pal_blessing_of_faith : public SpellScriptLoader
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user