-- Aemos's v1.20 relocation to Hillsbrad Foothills (2026_08_16_02.sql) used a heuristic z estimated
-- from nearby spawns 15-19 yards away (that cluster itself spans z=47-55, real elevation variance in
-- this micro-area) -- real in-game testing found the actual ground there is at z~10.7, a ~43-yard
-- drop, leaving Aemos spawned invisible/buried in terrain (quest "!" still showed since the creature
-- was genuinely spawned and in range, just underground). Corrected via a real GM `.npc move` in-game
-- (which already updates the live world DB directly) -- this migration just brings that fix into the
-- module's tracked SQL history so a fresh deploy doesn't regress it.
DELETE FROM `creature` WHERE `id` = 911002;
INSERT INTO `creature`
(`id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`)
VALUES
(911002, 0, 1, 1, -560.1378, -800.1455, 10.705631, 4.68933, 300);