diff options
author | tobmaps <spambot42@yandex.ru> | 2011-06-10 21:33:01 +0700 |
---|---|---|
committer | tobmaps <spambot42@yandex.ru> | 2011-06-10 21:33:01 +0700 |
commit | bf739402491d7f18f902543fab53d0299eb35cee (patch) | |
tree | e4876876355419fa9b10f93e7482796a6aeef3c2 | |
parent | a4a57ab0960480952d135ffc0febd8d57c60af18 (diff) |
Core/Spells: item Majestic Dragon Figurine should proc also from instant spells
Closes #271
-rw-r--r-- | sql/base/world_database.sql | 1 | ||||
-rw-r--r-- | sql/updates/world/2011_06_10_01_world_spell_proc_event.sql | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 9e77f851df4..8257e4598c7 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -19236,6 +19236,7 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 60490, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Embrace of the Spider ( 60493, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Dying Curse ( 60519, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Spark of Life +( 60524, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Majestic Dragon Figurine ( 60529, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Forethought Talisman ( 60537, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 45), -- Soul of the Dead ( 60564, 0x00, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Savage Gladiator's Totem of Survival diff --git a/sql/updates/world/2011_06_10_01_world_spell_proc_event.sql b/sql/updates/world/2011_06_10_01_world_spell_proc_event.sql new file mode 100644 index 00000000000..78a9b05fd6f --- /dev/null +++ b/sql/updates/world/2011_06_10_01_world_spell_proc_event.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_proc_event` WHERE `entry` = 60524; +INSERT INTO `spell_proc_event` VALUES +(60524,0x00,0,0x00000000,0x00000000,0x00000000,0x00000000,0x00010000,0,0,0); |