From 7862e3845f0fa1620d57930b99fc2e5a915fe671 Mon Sep 17 00:00:00 2001 From: acidmanifesto Date: Mon, 17 Jan 2022 15:39:27 -0500 Subject: [PATCH] Add (DB/Misc): Add OldScarletMonastery (#10216) Cherry picked by TC Issue https://github.com/TrinityCore/TrinityCore/issues/27626 by @anzz1 --- .../updates/pending_db_world/rev_1642438429439298217.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1642438429439298217.sql diff --git a/data/sql/updates/pending_db_world/rev_1642438429439298217.sql b/data/sql/updates/pending_db_world/rev_1642438429439298217.sql new file mode 100644 index 000000000..1a0510b2c --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1642438429439298217.sql @@ -0,0 +1,9 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1642438429439298217'); + +-- add mapID 44 as valid instance +DELETE FROM `instance_template` WHERE `map`=44; +INSERT INTO `instance_template` (`map`, `parent`, `script`, `allowMount`) VALUES (44, 0, '', 0); + +-- add teleport location OldScarletMonastery +DELETE FROM `game_tele` WHERE `id`=1491; +INSERT INTO `game_tele` (`id`, `position_x`, `position_y`, `position_z`, `orientation`, `map`, `name`) VALUES (1491, 79, -1, 18.6778, 0, 44, 'OldScarletMonastery');