diff options
author | offl <offl@users.noreply.github.com> | 2021-08-14 20:28:27 +0300 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-03-12 23:48:07 +0100 |
commit | d95d56da108d3b769d8e0d077b72f10bcf4c4747 (patch) | |
tree | d9805c45d259feb04ac6049347b44257fe127119 | |
parent | 6342a5cfb01959d50440952bbc7ce12b9ce2782b (diff) |
DB/Creature: Add more spawn points for Hearthsinger Forresten
Closes #26766
(cherry picked from commit 1c40c3a4e1fcb7c124d778410579f271a3221ff4)
-rw-r--r-- | sql/updates/world/master/2022_03_12_25_world_2021_08_14_05_world.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_03_12_25_world_2021_08_14_05_world.sql b/sql/updates/world/master/2022_03_12_25_world_2021_08_14_05_world.sql new file mode 100644 index 00000000000..5aa6b878618 --- /dev/null +++ b/sql/updates/world/master/2022_03_12_25_world_2021_08_14_05_world.sql @@ -0,0 +1,10 @@ +-- +DELETE FROM `creature` WHERE `guid` IN (83061,83062) AND `id` = 10558; +INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `phaseId`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`) VALUES +(83061,10558,329,0,0,'1',0,0,1,3680.27,-3512.37,136.152,2.04204,86400,0,0,1,0,0,0,0,0,'',0), +(83062,10558,329,0,0,'1',0,0,1,3683.75,-3334.07,125.32,3.14159,86400,0,0,1,0,0,0,0,0,'',0); + +DELETE FROM `pool_members` WHERE `type` = 0 AND `spawnId` IN (83061,83062); +INSERT INTO `pool_members` (`type`, `spawnId`, `poolSpawnId`, `chance`, `description`) VALUES +(0, 83061, 376, 0, "Stratholme - Hearthsinger Forresten"), +(0, 83062, 376, 0, "Stratholme - Hearthsinger Forresten"); |