diff options
| author | Shocker <none@none> | 2010-09-08 16:00:10 +0300 |
|---|---|---|
| committer | Shocker <none@none> | 2010-09-08 16:00:10 +0300 |
| commit | cbc7ca8655916c85b34d73830f5d035aea9507c5 (patch) | |
| tree | 0b7ab1a28796c199a92b9b3a8bf255aae1ede4dc /sql | |
| parent | a5d628ef3ec56e0a5f311e87db2c62c6de6689bd (diff) | |
Core/Spells: Fixed PvP Trinket / Every Man for Himself / Will of the Forsaken shared CD, fixes issue 1872, based on dr.tenma's patch
--HG--
branch : trunk
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/base/world_database.sql | 6 | ||||
| -rw-r--r-- | sql/updates/9840_world_spell_linked_spell.sql | 5 |
2 files changed, 10 insertions, 1 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index ce7563929f5..c8725d9c2a3 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -18109,7 +18109,11 @@ INSERT INTO `spell_linked_spell` (`spell_trigger`,`spell_effect`,`type`,`comment ( 69377, 72590, 1, 'Runescroll of Fortitude'), ( 50141, 50001, 0, 'Blood Oath to Blood Oath Aura'), ( 61263, 61267, 0, 'Intravenous Healing Effect'), -( 61263, 61268, 0, 'Intravenous Mana Regeneration Effect'); +( 61263, 61268, 0, 'Intravenous Mana Regeneration Effect'), +-- PvP Trinket / Every Man for Himself / Will of the Forsaken +(7744, 72757, 0, 'Will of the Forsaken Cooldown Trigger (WOTF)'), +(42292, 72752, 0, 'Will of the Forsaken Cooldown Trigger'), +(59752, 72752, 0, 'Will of the Forsaken Cooldown Trigger'); /*!40000 ALTER TABLE `spell_linked_spell` ENABLE KEYS */; UNLOCK TABLES; diff --git a/sql/updates/9840_world_spell_linked_spell.sql b/sql/updates/9840_world_spell_linked_spell.sql new file mode 100644 index 00000000000..fab11165a0d --- /dev/null +++ b/sql/updates/9840_world_spell_linked_spell.sql @@ -0,0 +1,5 @@ +DELETE FROM spell_linked_spell WHERE spell_trigger IN(7744,42292,59752); +INSERT INTO spell_linked_spell (spell_trigger, spell_effect, type, comment) VALUES +(7744, 72757, 0, 'Will of the Forsaken Cooldown Trigger (WOTF)'), +(42292, 72752, 0, 'Will of the Forsaken Cooldown Trigger'), +(59752, 72752, 0, 'Will of the Forsaken Cooldown Trigger'); |
