fix(DB/gameobject): move three objects Half-Buried Bottle (2560) abov… (#12103)

* 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 😛
This commit is contained in:
Gultask
2022-06-22 14:47:01 -03:00
committed by GitHub
parent 70c934b33a
commit f56b0e48f7

View File

@@ -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;