aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/Events
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/scripts/Events')
-rw-r--r--src/server/scripts/Events/love_is_in_the_air.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/server/scripts/Events/love_is_in_the_air.cpp b/src/server/scripts/Events/love_is_in_the_air.cpp
index c79aea25f16..2eb6c184f62 100644
--- a/src/server/scripts/Events/love_is_in_the_air.cpp
+++ b/src/server/scripts/Events/love_is_in_the_air.cpp
@@ -158,27 +158,6 @@ enum SomethingStinks
SPELL_HEAVILY_PERFUMED = 71507
};
-// 70192 - Fragrant Air Analysis
-class spell_love_is_in_the_air_fragrant_air_analysis : public SpellScript
-{
- PrepareSpellScript(spell_love_is_in_the_air_fragrant_air_analysis);
-
- bool Validate(SpellInfo const* spellInfo) override
- {
- return ValidateSpellInfo({ uint32(spellInfo->GetEffect(EFFECT_0).CalcValue()) });
- }
-
- void HandleScript(SpellEffIndex /*effIndex*/)
- {
- GetHitUnit()->RemoveAurasDueToSpell(uint32(GetEffectValue()));
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_love_is_in_the_air_fragrant_air_analysis::HandleScript, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
- }
-};
-
// 71507 - Heavily Perfumed
class spell_love_is_in_the_air_heavily_perfumed : public AuraScript
{
@@ -346,7 +325,6 @@ void AddSC_event_love_is_in_the_air()
{
RegisterSpellScript(spell_love_is_in_the_air_romantic_picnic);
RegisterSpellScript(spell_love_is_in_the_air_create_heart_candy);
- RegisterSpellScript(spell_love_is_in_the_air_fragrant_air_analysis);
RegisterSpellScript(spell_love_is_in_the_air_heavily_perfumed);
RegisterSpellScript(spell_love_is_in_the_air_recently_analyzed);
RegisterSpellScript(spell_love_is_in_the_air_sample_satisfaction);