aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/Outland/HellfireCitadel
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/scripts/Outland/HellfireCitadel')
-rw-r--r--src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_broggok.cpp2
-rw-r--r--src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/boss_magtheridon.cpp6
-rw-r--r--src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/shattered_halls.cpp4
3 files changed, 0 insertions, 12 deletions
diff --git a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_broggok.cpp b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_broggok.cpp
index d564283af30..2c281a65d43 100644
--- a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_broggok.cpp
+++ b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_broggok.cpp
@@ -282,8 +282,6 @@ class spell_broggok_poison_cloud : public SpellScriptLoader
class spell_broggok_poison_cloud_AuraScript : public AuraScript
{
- PrepareAuraScript(spell_broggok_poison_cloud_AuraScript);
-
bool Validate(SpellInfo const* spellInfo) override
{
return ValidateSpellEffect({ { spellInfo->Id, EFFECT_0 } }) && ValidateSpellInfo({ spellInfo->GetEffect(EFFECT_0).TriggerSpell });
diff --git a/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/boss_magtheridon.cpp b/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/boss_magtheridon.cpp
index 90d24c23b51..b6f9ffbc92d 100644
--- a/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/boss_magtheridon.cpp
+++ b/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/boss_magtheridon.cpp
@@ -452,8 +452,6 @@ struct go_manticron_cube : public GameObjectAI
// 30541 - Blaze
class spell_magtheridon_blaze_target : public SpellScript
{
- PrepareSpellScript(spell_magtheridon_blaze_target);
-
bool Validate(SpellInfo const* /*spell*/) override
{
return ValidateSpellInfo({ SPELL_BLAZE });
@@ -473,8 +471,6 @@ class spell_magtheridon_blaze_target : public SpellScript
// 30410 - Shadow Grasp
class spell_magtheridon_shadow_grasp : public AuraScript
{
- PrepareAuraScript(spell_magtheridon_shadow_grasp);
-
bool Validate(SpellInfo const* /*spell*/) override
{
return ValidateSpellInfo({ SPELL_MIND_EXHAUSTION });
@@ -496,8 +492,6 @@ class spell_magtheridon_shadow_grasp : public AuraScript
// 30166 - Shadow Grasp (Visual Effect)
class spell_magtheridon_shadow_grasp_visual : public AuraScript
{
- PrepareAuraScript(spell_magtheridon_shadow_grasp_visual);
-
bool Validate(SpellInfo const* /*spell*/) override
{
return ValidateSpellInfo(
diff --git a/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/shattered_halls.cpp b/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/shattered_halls.cpp
index e1da5cc09bd..3fca93a1a44 100644
--- a/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/shattered_halls.cpp
+++ b/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/shattered_halls.cpp
@@ -191,8 +191,6 @@ class spell_kargath_executioner : public SpellScriptLoader
class spell_kargath_executioner_AuraScript : public AuraScript
{
- PrepareAuraScript(spell_kargath_executioner_AuraScript);
-
bool AreaCheck(Unit* target)
{
if (target->GetMap()->GetId() != 540)
@@ -226,8 +224,6 @@ class spell_remove_kargath_executioner : public SpellScriptLoader
class spell_remove_kargath_executioner_SpellScript : public SpellScript
{
- PrepareSpellScript(spell_remove_kargath_executioner_SpellScript);
-
void HandleScript(SpellEffIndex /*effIndex*/)
{
Unit* target = GetCaster();