diff options
author | offl <offl@users.noreply.github.com> | 2021-08-14 20:28:27 +0300 |
---|---|---|
committer | offl <offl@users.noreply.github.com> | 2021-08-14 20:28:27 +0300 |
commit | 1c40c3a4e1fcb7c124d778410579f271a3221ff4 (patch) | |
tree | b2e788cfb54adb34544a2cb8faa7957a585b47d2 | |
parent | a97eb831942124e026b9decddb0362af56ea137f (diff) |
DB/Creature: Add more spawn points for Hearthsinger Forresten
Closes #26766
-rw-r--r-- | sql/updates/world/3.3.5/2021_08_14_05_world.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2021_08_14_05_world.sql b/sql/updates/world/3.3.5/2021_08_14_05_world.sql new file mode 100644 index 00000000000..31219070f65 --- /dev/null +++ b/sql/updates/world/3.3.5/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`, `spawnMask`, `phaseMask`, `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,1,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,1,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"); |