diff options
| author | Ovah <dreadkiller@gmx.de> | 2022-10-07 20:56:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-07 20:56:46 +0200 |
| commit | 3be76db592033828ed0e56cb08cdc5a2df5be8b0 (patch) | |
| tree | 59920a2ef58156bfbf763a98aa5f7878e1533b25 /sql | |
| parent | 8f6ce648366099aecb966a57049371bfa4b19e56 (diff) | |
Scripts/DK: Fixed Rime talent (#28333)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2022_10_07_01_world.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_10_07_01_world.sql b/sql/updates/world/master/2022_10_07_01_world.sql new file mode 100644 index 00000000000..0f74584a992 --- /dev/null +++ b/sql/updates/world/master/2022_10_07_01_world.sql @@ -0,0 +1,9 @@ +-- +DELETE FROM `spell_script_names` WHERE `ScriptName`= 'spell_dk_rime'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(59057, 'spell_dk_rime'); + +DELETE FROM `spell_proc` WHERE `SpellId` IN (59057, 59052); +INSERT INTO `spell_proc` (`SpellId`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellTypeMask`, `SpellPhaseMask`, `DisableEffectsMask`, `Charges`) VALUES +(59057, 15, 0x8000 | 0x80, 0, 1, 1, 0x2, 0), +(59052, 15, 0x0, 0x2, 1, 1, 0, 1); |
