Scripts/Spells: Fixed mage talent Chrono Shift

Port From (https://github.com/TrinityCore/TrinityCore/commit/bd60df2ce06ff48e6c1466dda0bf697216978959)
This commit is contained in:
hondacrx
2022-02-24 15:50:29 -05:00
parent ce83ba9380
commit 5636d23235
+7 -1
View File
@@ -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
});