diff options
author | tobmaps <spambot42@yandex.ru> | 2011-05-11 19:35:48 +0700 |
---|---|---|
committer | tobmaps <spambot42@yandex.ru> | 2011-05-11 19:35:48 +0700 |
commit | 275c4d11ad34e27cbd541cd26b134fdd433f2a51 (patch) | |
tree | 581cffd2629d685007197bd9a6e3c4b474dacfec | |
parent | 7a3e622da90853dedca544157b29e47fd0a29f19 (diff) |
Core/Spells: Fix T8 4P Shadow Priest Set Bonus
Closes #1101
-rw-r--r-- | sql/base/world_database.sql | 2 | ||||
-rw-r--r-- | sql/updates/world/2011_05_11_04_world_spell_proc_event.sql | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 98d53fcf697..06564590319 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -19313,7 +19313,7 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 64867, 0x00, 3, 0x20000021, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Mage T8 2P Bonus ( 64882, 0x00, 10, 0x00000000, 0x00100000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Paladin T8 Protection 4P Bonus ( 64890, 0x00, 10, 0x00000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Item - Paladin T8 Holy 2P Bonus -( 64908, 0x00, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Priest T8 Shadow 4P Bonus +( 64908, 0x00, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Priest T8 Shadow 4P Bonus ( 64912, 0x00, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Priest T8 Healer 4P Bonus ( 57470, 0x00, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Renewed Hope ( 57472, 0x00, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Renewed Hope diff --git a/sql/updates/world/2011_05_11_04_world_spell_proc_event.sql b/sql/updates/world/2011_05_11_04_world_spell_proc_event.sql new file mode 100644 index 00000000000..53b912d888e --- /dev/null +++ b/sql/updates/world/2011_05_11_04_world_spell_proc_event.sql @@ -0,0 +1 @@ +UPDATE `spell_proc_event` SET `SpellFamilyMask0` = 0x00002000, `SpellFamilyMask2` = 0 WHERE `entry` = 64908; |