diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-07-27 17:37:59 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-07-27 17:37:59 +0200 |
commit | d0823edbc5a211c7bf25bb418306c817d9ab817e (patch) | |
tree | fd186041166208625278ded32a86d6d92fd87e21 | |
parent | 100f9cc37167bf71dc9901612569bbb565e44302 (diff) |
DB/Spells: Fix warrior talent "Shield Mastery"
-rw-r--r-- | sql/updates/world/2013_07_27_04_world_spell_misc_434.sql | 2 | ||||
-rw-r--r-- | sql/updates/world/2013_07_27_05_world_spell_proc_event_434.sql | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/sql/updates/world/2013_07_27_04_world_spell_misc_434.sql b/sql/updates/world/2013_07_27_04_world_spell_misc_434.sql index c068aa81c20..36dd8a870eb 100644 --- a/sql/updates/world/2013_07_27_04_world_spell_misc_434.sql +++ b/sql/updates/world/2013_07_27_04_world_spell_misc_434.sql @@ -5,7 +5,7 @@ INSERT INTO `spell_script_names`(`spell_id`, `ScriptName`) VALUES DELETE FROM `spell_proc_event` WHERE `entry`IN (82368,-80128); INSERT INTO `spell_proc_event` (`entry`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `procFlags`, `procEx`, `ppmRate`, `CustomChance`, `Cooldown`) VALUES (82368, 0, 4, 0, 0x100, 0, 16, 0, 0, 100, 0), -(-80128, 0, 4, 0, 0x40, 0, 0, 0, 0, 100, 0); +(-80128, 0, 4, 0, 0x40, 0, 0, 0, 0, 0, 0); DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=24 AND `SourceEntry` IN (80128,80129); INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES diff --git a/sql/updates/world/2013_07_27_05_world_spell_proc_event_434.sql b/sql/updates/world/2013_07_27_05_world_spell_proc_event_434.sql new file mode 100644 index 00000000000..56716d3c5e6 --- /dev/null +++ b/sql/updates/world/2013_07_27_05_world_spell_proc_event_434.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_proc_event` WHERE `entry`=-29598; +INSERT INTO `spell_proc_event` (`entry`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `procFlags`, `procEx`, `ppmRate`, `CustomChance`, `Cooldown`) VALUES +(-29598, 0, 4, 0x1000, 0, 0, 0, 0, 0, 0, 0); |