fix(Core/Spells): Implement spell_jump_distance (#25023)

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Andrew
2026-03-10 22:09:26 -03:00
committed by GitHub
parent 6ffe41dd59
commit 46b48cdfa0
7 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
--
CREATE TABLE IF NOT EXISTS `spell_jump_distance` (
`ID` int unsigned NOT NULL COMMENT 'spell id',
`JumpDistance` float NOT NULL DEFAULT '0' COMMENT 'max hop distance in yards',
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Per-spell chain jump distance override';
DELETE FROM `spell_jump_distance` WHERE `ID` IN (62131, 64390);
INSERT INTO `spell_jump_distance` (`ID`, `JumpDistance`) VALUES
(62131, 5.0),
(64390, 5.0);