aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
});