From 27e1decf231b14b856f6e1fc0cb4c048f2b8f1fe Mon Sep 17 00:00:00 2001 From: "@cgrahamseven" Date: Mon, 14 Oct 2024 14:44:07 -0500 Subject: [PATCH] fix(DB): Missing additional crashed flying machines gameobjects (#20197) * fix(DB/SAI): Missing additional crashed flying machines gameobjects Jenny's Whistle requires player to be near crashed flying machines, of which there are 6 total. This fix adds the other 3. Closes AzerothCore issue #20196 * Add DELETE statement and backticks --------- Co-authored-by: cgrahamseven --- .../updates/pending_db_world/rev_1728850639076317100.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1728850639076317100.sql diff --git a/data/sql/updates/pending_db_world/rev_1728850639076317100.sql b/data/sql/updates/pending_db_world/rev_1728850639076317100.sql new file mode 100644 index 000000000..abeb78652 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1728850639076317100.sql @@ -0,0 +1,7 @@ +-- +DELETE FROM `gameobject` WHERE `guid` IN (99829, 99830, 99831); +INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `ScriptName`, `VerifiedBuild`, `Comment`) +VALUES +(99829, 188019, 571, 0, 0, 1, 1, 3391, 5137, 13, 1.8, 0, 0, 0, 0, 25, 0, 1, "", 0, NULL), +(99830, 188019, 571, 0, 0, 1, 1, 3739, 5047, -0.77, 2.18, 0, 0, 0, 0, 25, 0, 1, "", 0, NULL), +(99831, 188019, 571, 0, 0, 1, 1, 3517, 5016, -1, 2.25, 0, 0, 0, 0, 25, 0, 1, "", 0, NULL);