diff options
author | Aqua Deus <95978183+aquadeus@users.noreply.github.com> | 2025-02-17 18:24:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-17 18:24:45 +0100 |
commit | 8684e863538e7e27d78b14397ff51b18a8226060 (patch) | |
tree | d4792b26d9d8977b9df1467a02593f28ca6d010c /sql | |
parent | c73f36d23e68e2684c97dfc9f283aa40b4297a70 (diff) |
Scripts/Spells: Attach Lay on Hands script to replacement spell id used by Empyreal Ward and adjust serverside spell duration of Divine Shield Exclude Aura (#30608)
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2025_02_17_02_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_02_17_02_world.sql b/sql/updates/world/master/2025_02_17_02_world.sql new file mode 100644 index 00000000000..c7ebca27ccc --- /dev/null +++ b/sql/updates/world/master/2025_02_17_02_world.sql @@ -0,0 +1,6 @@ +DELETE FROM `spell_script_names` WHERE `spell_id`=471195; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(471195, 'spell_pal_lay_on_hands'); + +-- Updating serverside spell 61988 +UPDATE `serverside_spell` SET `DurationIndex`=3 WHERE `Id`=61988; |