What bug does the patch fix? ItemSet 699 bonus (spell 41434) has no internal cooldown, but it's 45sec since patch 2.3
For which SubVersion revision was the patch created? MaNGOS rev6572
Is there a thread in the bug report section? No, there isn't (or at least i can't find it )
Who has been writing this patch? Me, Ebrithil
Source: wowhead
Index: sql/mangos.sql
===================================================================
--- sql/mangos.sql (revision 6572)
+++ sql/mangos.sql (working copy)
@@ -15000,7 +15000,7 @@
(40971,0,0,0,0,0x0000000000000000,0x08000000,0,0),
(41260,0,0,0,0,0x0000000000000000,0x00000004,0,10),
(41262,0,0,0,0,0x0000000000000000,0x00000004,0,10),
-(41434,0,0,0,0,0x0000000000000000,0x00000001,2,0),
+(41434,0,0,0,0,0x0000000000000000,0x00000001,2,45),
(41635,0,0,0,0,0x0000000000000000,0x00008000,0,0),
(42083,0,0,0,0,0x0000000000000000,0x00401000,0,0),
(42135,0,0,0,7,0x0000044000000000,0x00100402,0,90),
SQL:
DELETE FROM `mangos`.`spell_proc_event` WHERE `spell_proc_event`.`entry` = 41434;
INSERT INTO `spell_proc_event` (`entry`, `SchoolMask`, `Category`, `SkillID`, `SpellFamilyName`, `SpellFamilyMask`, `procFlags`, `ppmRate`, `cooldown`) VALUES
(41434, 0, 0, 0, 0, 0x0000000000000000, 0x00000001, 2, 45);