aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortelsamat <someone@trinitycore.org>2011-05-04 09:15:06 +0300
committerShocker <shocker@freakz.ro>2011-05-04 09:15:21 +0300
commit6d63f92bdb88d8159353215f186c611b2d90965d (patch)
tree538e8a20a3e0a9712c3cb6418c3c36041d2dc867
parent6b709d1ee0d49ddc5b14e0e64ef252b5e9d44435 (diff)
Core/Spells: Fix internal cooldown for Mirror of Truth trinket
Closes #1365
-rw-r--r--sql/base/world_database.sql2
-rw-r--r--sql/updates/world/2011_05_04_01_world_spell_proc_event.sql3
2 files changed, 4 insertions, 1 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql
index bef349900a3..2d8fae57877 100644
--- a/sql/base/world_database.sql
+++ b/sql/base/world_database.sql
@@ -18741,7 +18741,7 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam
( 33297, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Spell Haste Trinket
( 33299, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Coilfang Slave Pens Lvl 70 Boss3a Caster Trinket
( 33510, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5, 0, 0), -- Health Restore
-( 33648, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Reflection of Torment
+( 33648, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 45), -- Reflection of Torment
( 33719, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0, 0, 0), -- Perfect Spell Reflection
( 33736, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Water Shield (Rank 8)
( 33746, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Essence Infused Mushroom
diff --git a/sql/updates/world/2011_05_04_01_world_spell_proc_event.sql b/sql/updates/world/2011_05_04_01_world_spell_proc_event.sql
new file mode 100644
index 00000000000..49ed444a866
--- /dev/null
+++ b/sql/updates/world/2011_05_04_01_world_spell_proc_event.sql
@@ -0,0 +1,3 @@
+DELETE FROM `spell_proc_event` where entry = 33648;
+INSERT INTO `spell_proc_event` (`entry`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `procFlags`, `procEx`, `ppmRate`, `CustomChance`, `Cooldown`) VALUES
+(33648, 0, 0, 0, 0, 0, 0, 2, 0, 0, 45);