diff options
-rw-r--r-- | sql/updates/world/2016_04_11_01_world.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/2016_04_11_01_world.sql b/sql/updates/world/2016_04_11_01_world.sql new file mode 100644 index 00000000000..deb85a59222 --- /dev/null +++ b/sql/updates/world/2016_04_11_01_world.sql @@ -0,0 +1,9 @@ +-- +-- Spawn Firelands portal +SET @OGUID:= 300914; +DELETE FROM `gameobject` WHERE `guid`=@OGUID; +INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `PhaseId`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `VerifiedBuild`) VALUES +(@OGUID+0, 214611, 720, 0, 0, 120, 169, -560.341, 322.966, 115.636, 5.95157, 0, 0, -0.165047, 0.986286, 7200, 255, 1, 15595); + +-- correct spawn location for creature ID 6124, Captain Beld: +UPDATE `creature` SET `map`= 0 WHERE `guid`= 349908 AND `id`= 6124; |