mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 18:40:28 +00:00
fix(DB/spell_target_position): Fix teleport locations for Ulduar Teleporter (#7530)
Previously, the locations for Spark of Imagination and Descent Into Madness were swapped. This commit swaps them back Closes #7108
This commit is contained in:
committed by
GitHub
parent
c8a74114fb
commit
0d9bfdea16
@@ -0,0 +1,11 @@
|
||||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1629787955866471200');
|
||||
|
||||
-- Fix location for spell: 'Halls of Invention Teleport'
|
||||
UPDATE `spell_target_position`
|
||||
SET `PositionX` = 2518.22, `PositionY` = 2569.11, `PositionZ` = 412.69, `Orientation` = 3.10668
|
||||
WHERE `ID` = 64025;
|
||||
|
||||
-- Fix location for 'Prison of Yogg-Saron Teleport'
|
||||
UPDATE `spell_target_position`
|
||||
SET `PositionX` = 1854.8, `PositionY` = -11.46, `PositionZ` = 334.57, `Orientation` = 4.79266
|
||||
WHERE `ID` = 65042;
|
||||
Reference in New Issue
Block a user