diff options
| author | maanuel <none@none> | 2009-12-06 19:44:59 -0300 |
|---|---|---|
| committer | maanuel <none@none> | 2009-12-06 19:44:59 -0300 |
| commit | cab4258170a6ffb8220efa69459103e3754266b2 (patch) | |
| tree | 99910ed58f4ee03a75ea27c15da7548c15766a16 | |
| parent | 4853fa6641388e0cec7af28500782f181f3f8eef (diff) | |
Support for spell Void Shifted used by Zuramat.
--HG--
branch : trunk
| -rw-r--r-- | sql/FULL/world_spell_full.sql | 6 | ||||
| -rw-r--r-- | sql/updates/6439_world_spells.sql | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/sql/FULL/world_spell_full.sql b/sql/FULL/world_spell_full.sql index 99c432dcb2b..39db97bc3df 100644 --- a/sql/FULL/world_spell_full.sql +++ b/sql/FULL/world_spell_full.sql @@ -159,8 +159,10 @@ INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comm (-28169, 28240, 0, 'Mutating Injection - Poison Cloud'), -- Archavon ( 58666, 58672, 1, 'Impale (Archavon)'), -( 60882, 58672, 1, 'Impale (Archavon)'); - +( 60882, 58672, 1, 'Impale (Archavon)'), +-- Violet Hold +(-54361, 54343, 0, 'Void Shift (Normal) - Void Shifted'), +(-59743, 54343, 0, 'Void Shift (Heroic) - Void Shifted'); -- -------- -- CLICK diff --git a/sql/updates/6439_world_spells.sql b/sql/updates/6439_world_spells.sql new file mode 100644 index 00000000000..5c99fc10c18 --- /dev/null +++ b/sql/updates/6439_world_spells.sql @@ -0,0 +1,4 @@ +DELETE FROM `spell_linked_spell` WHERE `spell_trigger` IN (-54361, -59743); +INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES +(-54361, 54343, 0, 'Void Shift (Normal) - Void Shifted'), +(-59743, 54343, 0, 'Void Shift (Heroic) - Void Shifted'); |
