From 6b5f1150af0597a9138352675bee6d856d91d7ac Mon Sep 17 00:00:00 2001 From: balakethelock <111737968+balakethelock@users.noreply.github.com> Date: Fri, 4 Aug 2023 21:34:55 +0100 Subject: [PATCH] Remove ability that is unused in classic from Skeram script True fulfillment has an added spell that makes the player immune to stuns, roots and snares. In classic this spell is not applied to with the mind control, so removing it from here to match it. --- .../kalimdor/silithus/temple_of_ahnqiraj/boss_skeram.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/scripts/kalimdor/silithus/temple_of_ahnqiraj/boss_skeram.cpp b/src/scripts/kalimdor/silithus/temple_of_ahnqiraj/boss_skeram.cpp index 295dcd26c36..065840b8ff0 100644 --- a/src/scripts/kalimdor/silithus/temple_of_ahnqiraj/boss_skeram.cpp +++ b/src/scripts/kalimdor/silithus/temple_of_ahnqiraj/boss_skeram.cpp @@ -22,7 +22,6 @@ EndScriptData */ #define FULFILLMENT_RANGE 90.0f #define SPELL_TF_HASTE 2313 #define SPELL_TF_MOD_HEAL 26525 -#define SPELL_TF_IMMUNITY 26526 #define SPELL_TF_CANCEL 26589 #define SPELL_BLINK_0 4801 @@ -112,7 +111,6 @@ struct boss_skeramAI : public ScriptedAI FulfilledPlayer->RemoveAurasDueToSpellByCancel(SPELL_TRUE_FULFILLMENT); FulfilledPlayer->RemoveAurasDueToSpellByCancel(SPELL_TF_HASTE); FulfilledPlayer->RemoveAurasDueToSpellByCancel(SPELL_TF_MOD_HEAL); - FulfilledPlayer->RemoveAurasDueToSpellByCancel(SPELL_TF_IMMUNITY); } } @@ -248,7 +246,6 @@ struct boss_skeramAI : public ScriptedAI m_creature->CastSpell(target, SPELL_TF_HASTE, true); m_creature->CastSpell(target, SPELL_TF_MOD_HEAL, true); - m_creature->CastSpell(target, SPELL_TF_IMMUNITY, true); FullFillment_Timer = urand(20500, 25000); ControlledPlayerGUID = target->GetObjectGuid();