diff options
| author | Ovahlord <dreadkiller@gmx.de> | 2024-11-28 20:51:05 +0100 |
|---|---|---|
| committer | Ovahlord <dreadkiller@gmx.de> | 2024-11-28 20:51:05 +0100 |
| commit | d15f1776524df772f2a71d71fe885d996e0ca854 (patch) | |
| tree | a4e5faf7d46458799f1db085843a3b4647ea5ac6 /sql | |
| parent | cb21cd8e24e069227b01ca2075a7eee4c37e9086 (diff) | |
Scripts/Spells: fixed hunter Improved Steady Shot talent
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/cata_classic/2024_11_28_00_world.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/cata_classic/2024_11_28_00_world.sql b/sql/updates/world/cata_classic/2024_11_28_00_world.sql new file mode 100644 index 00000000000..434aeef98c6 --- /dev/null +++ b/sql/updates/world/cata_classic/2024_11_28_00_world.sql @@ -0,0 +1,7 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName`= 'spell_hun_improved_steady_shot'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(-53221, 'spell_hun_improved_steady_shot'); + +DELETE FROM `spell_proc` WHERE `SpellId`= -53221; +INSERT INTO `spell_proc` (`SpellId`, `SpellFamilyName`, `SpellTypeMask`, `SpellPhaseMask`) VALUES +(-53221, 9, 0x1, 0x1); |
