diff options
author | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2011-03-26 15:18:16 +0100 |
---|---|---|
committer | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2011-03-26 15:18:16 +0100 |
commit | 89fd9d9ca502f0635a44c57647635d940a568bed (patch) | |
tree | dbc72a37c898ef5dfe86026e4424c41e37210e82 | |
parent | 587baa1518d03ddd47e8b88be032694aa63b8bf7 (diff) |
DB/Items: fix Darkmoon Card: Illusion
fixes #671
-rw-r--r-- | sql/base/world_database.sql | 1 | ||||
-rw-r--r-- | sql/updates/world/2011_03_26_2_world_spell_linked_spell.sql | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index caea467b71d..60585e24a69 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -18212,6 +18212,7 @@ INSERT INTO `spell_linked_spell` (`spell_trigger`,`spell_effect`,`type`,`comment ( 50141, 50001, 0, 'Blood Oath to Blood Oath Aura'), ( 61263, 61267, 0, 'Intravenous Healing Effect'), ( 61263, 61268, 0, 'Intravenous Mana Regeneration Effect'), +(-57350,60242,0, 'Darkmoon Card: Illusion'), -- 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'), diff --git a/sql/updates/world/2011_03_26_2_world_spell_linked_spell.sql b/sql/updates/world/2011_03_26_2_world_spell_linked_spell.sql new file mode 100644 index 00000000000..4a7db38c118 --- /dev/null +++ b/sql/updates/world/2011_03_26_2_world_spell_linked_spell.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_linked_spell` WHERE `spell_trigger`=-57350 AND `spell_effect`=60242 ; +INSERT INTO `spell_linked_spell` (`spell_trigger`,`spell_effect`,`type`,`comment`) VALUES +(-57350,60242,0, 'Darkmoon Card: Illusion'); |