aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKillyana <morphone1@gmail.com>2020-04-19 19:19:23 +0200
committerKillyana <morphone1@gmail.com>2020-04-19 19:19:23 +0200
commit9e585732728a0b99c6e8f70d30bd7c508de44636 (patch)
treeb570c6ce4b1cfb21aeba2331e9f33acc683ab77b
parentcc41323d6f04603c03d847e57a6ac79ff0fce3df (diff)
Spell: Move "Dark Conclave Ritualist Channel" outside Ulduar spells
-rw-r--r--src/server/game/Spells/SpellMgr.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp
index 0fc28faf709..dbd9b65fa34 100644
--- a/src/server/game/Spells/SpellMgr.cpp
+++ b/src/server/game/Spells/SpellMgr.cpp
@@ -4037,6 +4037,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->DurationEntry = sSpellDurationStore.LookupEntry(4); // 2 minutes
});
+ // Dark Conclave Ritualist Channel
+ ApplySpellFix({ 38469 }, [](SpellInfo* spellInfo)
+ {
+ spellInfo->RangeEntry = sSpellRangeStore.LookupEntry(6); // 100yd
+ });
+
//
// VIOLET HOLD SPELLS
//
@@ -4158,8 +4164,8 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->Effects[EFFECT_0].TargetB = SpellImplicitTargetInfo(TARGET_DEST_CASTER);
});
- // Cosmic Smash (Algalon the Observer) & Dark Conclave Ritualist Channel
- ApplySpellFix({ 62311, 64596, 38469 }, [](SpellInfo* spellInfo)
+ // Cosmic Smash (Algalon the Observer)
+ ApplySpellFix({ 62311, 64596 }, [](SpellInfo* spellInfo)
{
spellInfo->RangeEntry = sSpellRangeStore.LookupEntry(6); // 100yd
});