aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorAqua Deus <95978183+aquadeus@users.noreply.github.com>2024-11-24 16:14:31 +0100
committerGitHub <noreply@github.com>2024-11-24 16:14:31 +0100
commitbd54059dbba695d14521d8970a4b648170804612 (patch)
tree2177f9f10fba0d34d318c3bbda3f69751f517df9 /sql
parent3f90e4853e71548eb90da709243c0de0a0443428 (diff)
Scripts/Spells: Fix Rogue Stealth with cleanup for dropped spells and move some linked spells to their own separate scripts (#30378)
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2024_11_24_00_world.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/master/2024_11_24_00_world.sql b/sql/updates/world/master/2024_11_24_00_world.sql
new file mode 100644
index 00000000000..34cec28b8d8
--- /dev/null
+++ b/sql/updates/world/master/2024_11_24_00_world.sql
@@ -0,0 +1,10 @@
+DELETE FROM `spell_proc` WHERE `SpellId` IN (343173);
+INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES
+(343173,0x00,8,0x2000040C,0x00000000,0x00000808,0x80002100,0x0,0x0,0x1,0x2,0x0,0x0,0x0,0,0,0,0); -- Premeditation
+
+DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_rog_premeditation', 'spell_rog_shadow_focus', 'spell_rog_premeditation_proc');
+INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
+(1784, 'spell_rog_premeditation'),
+(343173, 'spell_rog_premeditation_proc'),
+(1784, 'spell_rog_shadow_focus'),
+(185313, 'spell_rog_shadow_focus');