diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-07-16 16:05:21 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-07-16 16:05:21 +0200 |
commit | e90550fc071dbfc80daee59ba4f4bd647ed3fb1b (patch) | |
tree | befff8fccfd8aefd5b12307e2bfd35574fb322d9 | |
parent | 4c3d2bdb541cae5771b01aa19702d0c23ffa6f04 (diff) |
DB/Gameobject: Fix spawnMask for Orb of Naxxramas
-rw-r--r-- | sql/updates/world/2013_07_16_00_world_misc.sql | 4 | ||||
-rw-r--r-- | sql/updates/world/2013_07_16_01_world_gameobject.sql | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/sql/updates/world/2013_07_16_00_world_misc.sql b/sql/updates/world/2013_07_16_00_world_misc.sql index 1b9624c5e0b..449919e44e2 100644 --- a/sql/updates/world/2013_07_16_00_world_misc.sql +++ b/sql/updates/world/2013_07_16_00_world_misc.sql @@ -9,8 +9,8 @@ INSERT INTO `game_graveyard_zone` (`id`, `ghost_zone`, `faction`) VALUES DELETE FROM `gameobject` WHERE `guid` IN (5216, 5222); INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES -(5216, 202277, 533, 15, 1, 3495.97, -5357.84, 144.9645, 0.5410506, 0, 0, 0, 1, 7200, 255, 1), -- Orb of Naxxramas -(5222, 202278, 533, 15, 1, 2997.675, -3437.799, 304.1996, 1.151916, 0, 0, 0, 1, 7200, 255, 1); -- Orb of Naxxramas +(5216, 202277, 533, 3, 1, 3495.97, -5357.84, 144.9645, 0.5410506, 0, 0, 0, 1, 7200, 255, 1), -- Orb of Naxxramas +(5222, 202278, 533, 3, 1, 2997.675, -3437.799, 304.1996, 1.151916, 0, 0, 0, 1, 7200, 255, 1); -- Orb of Naxxramas -- Teleportation positions for Orbs from sniff - TODO: add db coords for spell 72613 DELETE FROM `spell_target_position` WHERE `id` IN (28444, 72617); diff --git a/sql/updates/world/2013_07_16_01_world_gameobject.sql b/sql/updates/world/2013_07_16_01_world_gameobject.sql new file mode 100644 index 00000000000..ef5624ee090 --- /dev/null +++ b/sql/updates/world/2013_07_16_01_world_gameobject.sql @@ -0,0 +1 @@ +UPDATE `gameobject` SET `spawnMask`=3 WHERE `guid` IN (5216,5222); |