diff options
-rw-r--r-- | sql/base/world_database.sql | 1 | ||||
-rw-r--r-- | sql/updates/world/2011_05_11_10_world_conditions.sql | 3 | ||||
-rw-r--r-- | sql/updates/world/2011_05_11_10_world_spell_linked_spell.sql | 3 |
3 files changed, 7 insertions, 0 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 4c8d7f662e1..4adeb8ed3be 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -18102,6 +18102,7 @@ INSERT INTO `spell_linked_spell` (`spell_trigger`,`spell_effect`,`type`,`comment ( 58875, 58876, 1, 'Spirit Walk'), (-47960,-63311, 0, 'Glyph of Shadowflame Rank 1'), (-61291,-63311, 0, 'Glyph of Shadowflame Rank 2'), +( 56453, 67544, 0, 'Lock and Load Marker'), -- Misc ( 55428, 55475, 0, 'Lifeblood (Rank 1)'), ( 55480, 55475, 0, 'Lifeblood (Rank 2)'), diff --git a/sql/updates/world/2011_05_11_10_world_conditions.sql b/sql/updates/world/2011_05_11_10_world_conditions.sql new file mode 100644 index 00000000000..31f0647b162 --- /dev/null +++ b/sql/updates/world/2011_05_11_10_world_conditions.sql @@ -0,0 +1,3 @@ +DELETE FROM `conditions` WHERE `SourceEntry` = 56453; +INSERT INTO `conditions` VALUES +(17,0,56453,0,11,67544,0,0,0,'','Lock and Load - Lock and Load Marker'); diff --git a/sql/updates/world/2011_05_11_10_world_spell_linked_spell.sql b/sql/updates/world/2011_05_11_10_world_spell_linked_spell.sql new file mode 100644 index 00000000000..02bc6b32ddd --- /dev/null +++ b/sql/updates/world/2011_05_11_10_world_spell_linked_spell.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_linked_spell` WHERE `spell_trigger` = 56453; +INSERT INTO `spell_linked_spell` VALUES +(56453,67544,0,'Lock and Load Marker'); |