From 26cc8c4f274c8a52251aa4c282c424dd33ccf476 Mon Sep 17 00:00:00 2001 From: syssneck <68868567+syssneck@users.noreply.github.com> Date: Sun, 22 Aug 2021 00:56:15 +0200 Subject: [PATCH] fix(DB/Creature): Chillwind Chimaera falling through the floor (#7407) Fixed the spawn location of a Chillwind Chimaera (guid = 41253) that was falling through the floor when respawned. --- .../updates/pending_db_world/rev_1629217819213526612.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1629217819213526612.sql diff --git a/data/sql/updates/pending_db_world/rev_1629217819213526612.sql b/data/sql/updates/pending_db_world/rev_1629217819213526612.sql new file mode 100644 index 000000000..3dc8b6eba --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1629217819213526612.sql @@ -0,0 +1,6 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1629217819213526612'); + +-- Slightly changes position_z so that the mob doesn't fall through the floor on respawn +DELETE FROM `creature` WHERE (`id` = 7448) AND (`guid` IN (41253)); +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 +(41253, 7448, 1, 0, 0, 1, 1, 10810, 0, 6034.82, -5179.02, 867.5, 1.72181, 333, 15, 0, 3529, 0, 1, 0, 0, 0, '', 0);