DB/Gameobject: Fix rotation of some signs

Closes #26961
This commit is contained in:
CraftedRO
2021-10-04 22:42:09 +03:00
committed by offl
parent a9ce76a0fb
commit 572d1f3be5

View File

@@ -0,0 +1,7 @@
--
UPDATE `gameobject` a INNER JOIN `gameobject_addon` b ON a.`guid` = b.`guid` SET
`rotation0` = `parent_rotation0`,
`rotation1` = `parent_rotation1`,
`rotation2` = `parent_rotation2`,
`rotation3` = `parent_rotation3` WHERE a.`id` IN (19569,19570,19571);
DELETE FROM `gameobject_addon` WHERE `guid` IN (SELECT `guid` FROM `gameobject` WHERE `id` IN (19569,19570,19571));