diff options
author | Aqua Deus <95978183+aquadeus@users.noreply.github.com> | 2024-09-08 21:28:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-08 21:28:13 +0200 |
commit | 10b50d752b548aac9ccd3ec6b1b1367c37b8f9f0 (patch) | |
tree | cbc823df583720927c82059dc56f60cc2e0b1618 /sql | |
parent | 7f6afa67f3fea03c85277f7d536d5779a77bc824 (diff) |
Scripts/Spells: Implement warlock talent Death's Embrace (#30164)
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2024_09_08_01_world.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/master/2024_09_08_01_world.sql b/sql/updates/world/master/2024_09_08_01_world.sql new file mode 100644 index 00000000000..c25ee8e25a1 --- /dev/null +++ b/sql/updates/world/master/2024_09_08_01_world.sql @@ -0,0 +1,9 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_warl_deaths_embrace'; +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_warl_deaths_embrace_dots'; +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_warl_deaths_embrace_drain_life'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(324540, 'spell_warl_deaths_embrace'), +(980, 'spell_warl_deaths_embrace_dots'), +(146739, 'spell_warl_deaths_embrace_dots'), +(316099, 'spell_warl_deaths_embrace_dots'), +(234153, 'spell_warl_deaths_embrace_drain_life'); |