fix(Scripts/Spells): some LW drums cannot affect targets lvl80 or higher (#24611)

This commit is contained in:
sogladev
2026-02-07 00:58:05 +01:00
committed by GitHub
parent 29be3483b6
commit 896f762cce
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
--
-- 35475 Drums of War
-- 35476 Drums of Battle
-- 35478 Drums of Restoration
-- 'Cannot affect targets level 80 or higher.'
DELETE FROM `spell_script_names` WHERE `spell_id` IN (35475, 35476, 35478);
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
(35475, 'spell_gen_filter_party_level_80'),
(35476, 'spell_gen_filter_party_level_80'),
(35478, 'spell_gen_filter_party_level_80');