diff options
author | mdX7 <mdX7@users.noreply.github.com> | 2021-01-29 18:11:00 +0200 |
---|---|---|
committer | offl <offl@users.noreply.github.com> | 2021-01-29 18:11:00 +0200 |
commit | acb3999bb8bc289461e9fccad04e3e4a6fd2fddb (patch) | |
tree | 749ae016d482ba8313a253592a614548bc7c4a3e /sql | |
parent | a8ee131390948b628e2a5bb539f1815de6480660 (diff) |
DB/Creature: Add missing spirit healer
Closes #25955
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/3.3.5/2021_01_29_04_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2021_01_29_04_world.sql b/sql/updates/world/3.3.5/2021_01_29_04_world.sql new file mode 100644 index 00000000000..d9de4dcde85 --- /dev/null +++ b/sql/updates/world/3.3.5/2021_01_29_04_world.sql @@ -0,0 +1,6 @@ +-- +ALTER TABLE `creature` MODIFY `VerifiedBuild` int(11) DEFAULT '0'; + +DELETE FROM `creature` WHERE `guid` = 43740 AND `id` = 6491; +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `MovementType`, `VerifiedBuild`) VALUES +(43740, 6491, 571, 1, 1, 0, 0, 2002.7415771484375, 5938.0986328125, 37.18986129760742187, 5.934119224548339843, 300, 0, 0, 37176); |