mirror of
https://github.com/liyunfan1223/azerothcore-wotlk.git
synced 2026-08-04 13:57:52 +00:00
fix(DB/instance): Correct some Gundrak teleport positions based on sniffs. (#26559)
This commit is contained in:
13
data/sql/updates/pending_db_world/gundrak-lfg-entrance.sql
Normal file
13
data/sql/updates/pending_db_world/gundrak-lfg-entrance.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
DELETE FROM `areatrigger_teleport` WHERE `ID` = 5206;
|
||||
INSERT INTO `areatrigger_teleport` (`ID`, `Name`, `target_map`, `target_position_x`, `target_position_y`, `target_position_z`, `target_orientation`) VALUES
|
||||
(5206, 'Gundrak (North Entrance)', 604, 1882.32, 631.027, 176.696, 3.1415927);
|
||||
|
||||
-- For below, Wrath Classic (51943) has the player arrive at 1880.74, 853.76, 176.696, 3.14159.
|
||||
-- However, retail Wrath seems to put the player on the opposing side.
|
||||
-- The above areatrigger_teleport position was also sniffed from Wrath Classic, so that is being used for the LFG teleport,
|
||||
-- as it is on the correct side of the instance.
|
||||
|
||||
DELETE FROM `lfg_dungeon_template` WHERE `dungeonId` IN (216, 217);
|
||||
INSERT INTO `lfg_dungeon_template` (`dungeonId`, `name`, `position_x`, `position_y`, `position_z`, `orientation`, `VerifiedBuild`) VALUES
|
||||
(216, 'Gundrak', 1882.32, 631.027, 176.696, 3.1415927, 0), -- Normal
|
||||
(217, 'Gundrak', 1882.32, 631.027, 176.696, 3.1415927, 0); -- Heroic
|
||||
Reference in New Issue
Block a user