DB/Misc: Add OldScarletMonastery game_tele and mark mapID 44 as valid

Closes #27626
This commit is contained in:
anzz1
2022-01-20 13:35:24 +02:00
committed by offl
parent 28e962991e
commit 7c6c57b458

View File

@@ -0,0 +1,9 @@
-- 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 `name`='OldScarletMonastery';
INSERT INTO `game_tele` (`position_x`, `position_y`, `position_z`, `orientation`, `map`, `name`) VALUES
(79,-1,18.6778,0,44,'OldScarletMonastery');