From 5636d23235ab7c93e0143b775e5e706815aa4b69 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Thu, 24 Feb 2022 15:50:29 -0500 Subject: [PATCH] Scripts/Spells: Fixed mage talent Chrono Shift Port From (https://github.com/TrinityCore/TrinityCore/commit/bd60df2ce06ff48e6c1466dda0bf697216978959) --- Source/Game/Spells/SpellManager.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Source/Game/Spells/SpellManager.cs b/Source/Game/Spells/SpellManager.cs index 9af0cad2d..736df018b 100644 --- a/Source/Game/Spells/SpellManager.cs +++ b/Source/Game/Spells/SpellManager.cs @@ -3670,7 +3670,13 @@ namespace Game.Entities }); // Dark Conclave Ritualist Channel - ApplySpellFix(new [] { 38469 }, spellInfo => + ApplySpellFix(new[] { 38469 }, spellInfo => + { + spellInfo.RangeEntry = CliDB.SpellRangeStorage.LookupByKey(6); // 100yd + }); + + // Chrono Shift (enemy slow part) + ApplySpellFix(new[] { 236299 }, spellInfo => { spellInfo.RangeEntry = CliDB.SpellRangeStorage.LookupByKey(6); // 100yd });