diff options
| author | Killyana <morphone1@gmail.com> | 2016-04-11 16:07:32 +0200 |
|---|---|---|
| committer | Killyana <morphone1@gmail.com> | 2016-04-11 16:07:32 +0200 |
| commit | 45f86729f0978c4117f2c76c33daa8222e45ffe0 (patch) | |
| tree | 7fec6d1402727ba6775c38510364672b3975e09a | |
| parent | 92905cdaae45b0e493129a90b94036f7ce4ce895 (diff) | |
DB/Misc: Spawn Firelands portal and fix Captain Beld map
Closes #16340
| -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; |
