diff options
author | tobmaps <spambot42@yandex.ru> | 2011-05-12 06:02:30 +0700 |
---|---|---|
committer | tobmaps <spambot42@yandex.ru> | 2011-05-12 06:02:30 +0700 |
commit | 5a57b2e7e6b3802188b5bcb57d7ae0aa16476c02 (patch) | |
tree | 360517e280a56e67deef0927d6a033e7c3d1be58 | |
parent | e520f7383975536a34e293f79ccc290436ba3ee1 (diff) |
Core/Spells: Fix talent Bloodsurge
Closes #887
-rw-r--r-- | sql/base/world_database.sql | 1 | ||||
-rw-r--r-- | sql/updates/world/2011_05_11_15_world_spell_proc_event.sql | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index c434a875eba..2621be04a6a 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -18943,7 +18943,6 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 46913, 0x00, 4, 0x00000040, 0x00000404, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Bloodsurge (Rank 1) ( 46914, 0x00, 4, 0x00000040, 0x00000404, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Bloodsurge (Rank 2) ( 46915, 0x00, 4, 0x00000040, 0x00000404, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Bloodsurge (Rank 3) -( 46916, 0x00, 4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Slam! ( 46951, 0x00, 4, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Sword and Board (Rank 1) ( 46952, 0x00, 0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Sword and Board (Rank 2) ( 46953, 0x00, 0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Sword and Board (Rank 3) diff --git a/sql/updates/world/2011_05_11_15_world_spell_proc_event.sql b/sql/updates/world/2011_05_11_15_world_spell_proc_event.sql new file mode 100644 index 00000000000..d15fec113c9 --- /dev/null +++ b/sql/updates/world/2011_05_11_15_world_spell_proc_event.sql @@ -0,0 +1 @@ +DELETE FROM `spell_proc_event` WHERE `entry` = 46916; |