fix(DB/Gameobject): Sniffed Values for remaining City Bonfire spawns (#17784)

This commit is contained in:
sudlud
2023-11-19 00:01:00 +01:00
committed by GitHub
parent 0c0371545f
commit 8feca901b5

View File

@@ -0,0 +1,30 @@
-- Update remaining Midsummer city flames with sniffed values
DELETE FROM `gameobject` WHERE (`id` IN (181332, 181333, 181334, 181335, 181336, 181337, 188128, 188129)) AND (`guid` BETWEEN 242656 AND 242663);
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
-- Flame of Stormwind
(242656, 181332, 0, 0, 0, 1, 1, -8837.037109375, 857.65673828125, 98.77628326416015625, 4.206246376037597656, 0, 0, -0.86162853240966796, 0.50753939151763916, 120, 255, 1, "", 50063, NULL),
-- Flame of Ironforge
(242657, 181333, 0, 0, 0, 1, 1, -4700.27587890625, -1224.3353271484375, 501.659332275390625, 4.136432647705078125, 0, 0, -0.87881660461425781, 0.477159708738327026, 120, 255, 1, "", 50063, NULL),
-- Flame of Darnassus
(242658, 181334, 1, 0, 0, 1, 1, 8700.212890625, 931.42156982421875, 14.82299995422363281, 1.675513744354248046, 0, 0, 0.743144035339355468, 0.669131457805633544, 120, 255, 1, "", 50063, NULL),
-- Flame of the Undercity
(242659, 181335, 0, 0, 0, 1, 1, 1822.271240234375, 218.638946533203125, 59.89241409301757812, 6.248279094696044921, 0, 0, -0.01745223999023437, 0.999847710132598876, 120, 255, 1, "", 50063, NULL),
-- Flame of Orgrimmar
(242660, 181336, 1, 0, 0, 1, 1, 1911.6729736328125, -4338.283203125, 21.07045364379882812, 6.073746204376220703, 0, 0, -0.10452842712402343, 0.994521915912628173, 120, 255, 1, "", 50172, NULL),
-- Flame of Thunder Bluff
(242661, 181337, 1, 0, 0, 1, 1, -1037.529541015625, 292.720489501953125, 135.7449493408203125, 2.827429771423339843, 0, 0, 0.987688064575195312, 0.156436234712600708, 120, 255, 1, "", 50172, NULL),
-- Flame of the Exodar
(242662, 188128, 530, 0, 0, 1, 1, -3793.8955078125, -11503.70703125, -134.745803833007812, 4.101525306701660156, 0, 0, -0.88701057434082031, 0.461749136447906494, 120, 255, 1, "", 50063, NULL),
-- Flame of Silvermoon
(242663, 188129, 530, 0, 0, 1, 1, 9805.880859375, -7239.91015625, 26.05121803283691406, 3.176533222198486328, 0, 0, -0.999847412109375, 0.017469281330704689, 120, 255, 1, "", 50063, NULL);
DELETE FROM `game_event_gameobject` WHERE (`eventEntry` = 1) AND (`guid` BETWEEN 242656 AND 242663);
INSERT INTO `game_event_gameobject` (`eventEntry`,`guid`) VALUES
(1, 242656),
(1, 242657),
(1, 242658),
(1, 242659),
(1, 242660),
(1, 242661),
(1, 242662),
(1, 242663);