diff options
author | Ulduar <ulduar@trinity.contrib> | 2015-07-19 04:53:33 +0100 |
---|---|---|
committer | DDuarte <dnpd.dd@gmail.com> | 2015-07-19 04:53:33 +0100 |
commit | a0acd9b11bf64e36acb07b0deca5354a35f474c5 (patch) | |
tree | 2c2e79e84c88a85bf745ff6e5f5cc41c308c65c5 | |
parent | df7f1af660990e5c1bf4237d0d5a96eef89f01e1 (diff) |
DB/Raids: Add Throne of Thunder to instance template and 2 teleport positions
Fixes #13846
-rw-r--r-- | sql/updates/world/2015_07_19_19_world.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/2015_07_19_19_world.sql b/sql/updates/world/2015_07_19_19_world.sql new file mode 100644 index 00000000000..f89bd5f2bf2 --- /dev/null +++ b/sql/updates/world/2015_07_19_19_world.sql @@ -0,0 +1,8 @@ +DELETE FROM `instance_template` WHERE `map` = 1098; +INSERT INTO `instance_template` (`map`, `parent`, `allowMount`) VALUES +(1098, 870 /* Isle of Thunder */, 0); -- Throne of Thunder Raid + +DELETE FROM `game_tele` WHERE `id` IN (1566, 1567); +INSERT INTO `game_tele` (`id`, `position_x`, `position_y`, `position_z`, `orientation`, `map`, `name`) values +(1566,5710.84,4094.3,156.463,3.88393,1098, 'LeiShen'), +(1567,5525.29,4654.03,-2.47721,3.1433,1098, 'RadenRoom'); |