From f56b0e48f7bc1fba251466c371f875256f032c57 Mon Sep 17 00:00:00 2001 From: Gultask <100873791+Gultask@users.noreply.github.com> Date: Wed, 22 Jun 2022 14:47:01 -0300 Subject: [PATCH] =?UTF-8?q?fix(DB/gameobject):=20move=20three=20objects=20?= =?UTF-8?q?Half-Buried=20Bottle=20(2560)=20abov=E2=80=A6=20(#12103)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(DB/gameobject): move three objects Half-Buried Bottle (2560) above ground Moves objects 11031 11034 11705 above ground as they were previously underground and unreachable. Created by using .go gameobject, flying up, taking the Z-axis from .gps and subtracting 0.1 from the value. Temporary change until a proper sniff can be made. * changed to UPDATE queries Dunno how to make it compact 😛 --- data/sql/updates/pending_db_world/half_buried_bottle.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/half_buried_bottle.sql diff --git a/data/sql/updates/pending_db_world/half_buried_bottle.sql b/data/sql/updates/pending_db_world/half_buried_bottle.sql new file mode 100644 index 000000000..34c6de95d --- /dev/null +++ b/data/sql/updates/pending_db_world/half_buried_bottle.sql @@ -0,0 +1,4 @@ +-- +UPDATE `gameobject` SET `position_z`=0.508326 WHERE `guid`=11031 AND `id`=2560; +UPDATE `gameobject` SET `position_z`=2.541038 WHERE `guid`=11034 AND `id`=2560; +UPDATE `gameobject` SET `position_z`=0.853386 WHERE `guid`=11705 AND `id`=2560;