diff options
author | Killyana <morphone1@gmail.com> | 2019-01-31 09:46:48 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-11-23 20:40:46 +0100 |
commit | ce6a6acc5ce26cf9c0b96084628a1eade6592f2e (patch) | |
tree | c6d1f063c296c5a9efe870c0a3e997ff380e4fc9 | |
parent | 4cdecf007699cbb6d0675081e774a2dca6ebfc18 (diff) |
DB/Creature: Fix some spawns in Ogri'la
(cherry picked from commit 9c6e838083f1b7f7941187b866209e1d51f0f90b)
-rw-r--r-- | sql/updates/world/master/2021_11_23_05_world_2019_01_31_00_world.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_11_23_05_world_2019_01_31_00_world.sql b/sql/updates/world/master/2021_11_23_05_world_2019_01_31_00_world.sql new file mode 100644 index 00000000000..0ed6777330f --- /dev/null +++ b/sql/updates/world/master/2021_11_23_05_world_2019_01_31_00_world.sql @@ -0,0 +1,15 @@ +-- +DELETE FROM `creature` WHERE `guid` IN (97353,97396); +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnDifficulties`, `phaseId`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`) VALUES +(97353, 23115, 530, '0', 0, 0, 0, 2336.01, 7298.97, 365.618, 3.55066, 300, 0, 0, 0, 0, 0), +(97396, 23115, 530, '0', 0, 0, 0, 2309.58, 7288.68, 365.617, 0.25198, 300, 0, 0, 0, 0, 0); + +UPDATE `creature` SET `position_x`=2341.8366, `position_y`=7240.4658, `position_z`=366.5410, `orientation`=1.481132 WHERE `guid`=78265; +UPDATE `creature` SET `position_x`=2356.8830, `position_y`=7285.9355, `position_z`=365.9563, `orientation`=3.260055 WHERE `guid`=91786; +UPDATE `creature` SET `position_x`=2338.6767, `position_y`=7337.7290, `position_z`=365.6684, `orientation`=4.467215 WHERE `guid`=91788; +UPDATE `creature` SET `position_x`=2323.238, `position_y`=7306.7163, `position_z`=365.6184, `orientation`=4.363535 WHERE `guid`=91793; +UPDATE `creature` SET `position_x`=2313.559082, `position_y`=7277.915, `position_z`=369.019073, `orientation`=1.147470 WHERE `guid`=91790; + +DELETE FROM `creature_template_movement` WHERE `CreatureId`=23253; +INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`) VALUES +(23253, 1, 1, 1, 0); |