aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlaymoira <none@none>2009-02-16 18:05:53 +0100
committerBlaymoira <none@none>2009-02-16 18:05:53 +0100
commit5ded6c8df4920acbc14b6b21dd2d68a54e99011a (patch)
treee50918dfb4b342c666cc191ad3e2f1e20218e129
parent0e282dacccac1f1dd36c3c7f01e9d63157b22b98 (diff)
*Added some spell script targets
--HG-- branch : trunk
-rw-r--r--sql/updates/1069_world_scripts.sql12
-rw-r--r--sql/updates/CMakeLists.txt1
2 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/1069_world_scripts.sql b/sql/updates/1069_world_scripts.sql
new file mode 100644
index 00000000000..0fafabf63f1
--- /dev/null
+++ b/sql/updates/1069_world_scripts.sql
@@ -0,0 +1,12 @@
+DELETE FROM `spell_script_target` WHERE `entry` IN ('44807', '32307', '32314');
+INSERT INTO `spell_script_target` (`entry`,`type`,`targetEntry`) VALUES
+('44807', '1', '24850'),
+('44807', '1', '24892'),
+('32307', '2', '17146'),
+('32307', '2', '17147'),
+('32307', '2', '17148'),
+('32307', '2', '18658'),
+('32314', '2', '17138'),
+('32314', '2', '18037'),
+('32314', '2', '18064'),
+('32314', '2', '18065'); \ No newline at end of file
diff --git a/sql/updates/CMakeLists.txt b/sql/updates/CMakeLists.txt
index 64f51f192f2..6c45423e70c 100644
--- a/sql/updates/CMakeLists.txt
+++ b/sql/updates/CMakeLists.txt
@@ -165,4 +165,5 @@ INSTALL(FILES
1018_world.sql
1026_world.sql
1028_world_scripts.sql
+1069_world_scripts.sql
DESTINATION share/trinity/sql/updates)