fix(Scripts/Ulduar): correct Ignis Iron Construct Brittle shatter threshold (#26260)

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Andrew
2026-06-17 21:26:05 -03:00
committed by GitHub
parent 252ed0fecf
commit 3596fc11f4
2 changed files with 59 additions and 17 deletions

View File

@@ -0,0 +1,8 @@
--
-- Ignis the Furnace Master: bind the Brittle aura proc script (spell_ignis_brittle_aura)
-- to both raid difficulty variants so Iron Constructs shatter at the correct,
-- tooltip-accurate damage threshold (62382 = 10m/5000, 67114 = 25m/3000).
DELETE FROM `spell_script_names` WHERE `spell_id` IN (62382, 67114);
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
(62382, 'spell_ignis_brittle_aura'),
(67114, 'spell_ignis_brittle_aura');