diff options
| author | ariel- <ariel-@users.noreply.github.com> | 2016-11-18 03:16:48 -0300 |
|---|---|---|
| committer | ariel- <ariel-@users.noreply.github.com> | 2016-11-18 03:16:48 -0300 |
| commit | c0cb823a91d4e3e71e4b7d76375c9e8667740cef (patch) | |
| tree | 914e9e522e46576efb4db09b5c8c8ff5690af6ae | |
| parent | 2c8a6fb771a42169a1817149ab0a2a19912ebea7 (diff) | |
DB/Spell: fix some runtime errors
| -rw-r--r-- | sql/updates/world/3.3.5/2016_11_18_00_world_335.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2016_11_18_00_world_335.sql b/sql/updates/world/3.3.5/2016_11_18_00_world_335.sql new file mode 100644 index 00000000000..f37ce0b4df5 --- /dev/null +++ b/sql/updates/world/3.3.5/2016_11_18_00_world_335.sql @@ -0,0 +1,10 @@ +DELETE FROM `spell_proc` WHERE `SpellId` IN (17670,50908,58501,-1120); +INSERT INTO `spell_proc` (`SpellId`, `AttributesMask`) VALUES +(17670, 0x10), -- Argent Dawn Commission +(50908, 0x20), -- Seal of Onslaught +(58501, 0x40), -- Iron Boot Flask +(-1120, 0x01|0x40); -- Drain Soul + +UPDATE `spell_proc` SET `AttributesMask`=`AttributesMask`|0x10 WHERE `SpellId`= 34827; -- Water Shield +UPDATE `spell_proc` SET `AttributesMask`=`AttributesMask`|0x20 WHERE `SpellId`=-52795; -- Borrowed Time +UPDATE `spell_proc` SET `AttributesMask`=`AttributesMask`|0x20 WHERE `SpellId`=-63156; -- Decimation |
