aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRetriman <nicolas_katre@hotmail.com>2011-05-17 17:53:24 +0700
committertobmaps <spambot42@yandex.ru>2011-05-17 17:53:24 +0700
commit2086eb37e8c865f28d8b239ac920ba4e63860fde (patch)
tree11e9705f266e2ccda103ce5e12d842153ea51691
parenta29044373877b56825917e59bcfdaa74cbac70b8 (diff)
Core/Spells: Taste for Blood should proc only from actual damage done
Closes #922
-rw-r--r--sql/base/world_database.sql6
-rw-r--r--sql/updates/world/2011_05_17_00_world_spell_proc_event.sql1
2 files changed, 4 insertions, 3 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql
index 369ade76f9a..f5ae869ba14 100644
--- a/sql/base/world_database.sql
+++ b/sql/base/world_database.sql
@@ -19354,9 +19354,9 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam
( 53234, 0x00, 9, 0x00020000, 0x00000001, 0x00000001, 0x00000000, 0x00000002, 0, 0, 0), -- Piercing Shots (Rank 1)
( 53237, 0x00, 9, 0x00020000, 0x00000001, 0x00000001, 0x00000000, 0x00000002, 0, 0, 0), -- Piercing Shots (Rank 2)
( 53238, 0x00, 9, 0x00020000, 0x00000001, 0x00000001, 0x00000000, 0x00000002, 0, 0, 0), -- Piercing Shots (Rank 3)
-( 56636, 0x00, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 6), -- Taste for Blood (Rank 1)
-( 56637, 0x00, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 6), -- Taste for Blood (Rank 2)
-( 56638, 0x00, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 6), -- Taste for Blood (Rank 3)
+( 56636, 0x00, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 6), -- Taste for Blood (Rank 1)
+( 56637, 0x00, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 6), -- Taste for Blood (Rank 2)
+( 56638, 0x00, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 6), -- Taste for Blood (Rank 3)
( 60503, 0x01, 4, 0x00000004, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Taste for Blood (proc)
( 68051, 0x01, 4, 0x00000004, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Overpower Ready! (proc)
( 52437, 0x01, 4, 0x20000000, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Sudden Death (proc)
diff --git a/sql/updates/world/2011_05_17_00_world_spell_proc_event.sql b/sql/updates/world/2011_05_17_00_world_spell_proc_event.sql
new file mode 100644
index 00000000000..af1cc8dfa8c
--- /dev/null
+++ b/sql/updates/world/2011_05_17_00_world_spell_proc_event.sql
@@ -0,0 +1 @@
+UPDATE `spell_proc_event` SET `procEx` = 0x00040000 WHERE `entry` IN (56636, 56637, 56638);