diff options
author | Malcrom <malcromdev@gmail.com> | 2012-12-02 10:04:01 -0330 |
---|---|---|
committer | Malcrom <malcromdev@gmail.com> | 2012-12-02 10:04:01 -0330 |
commit | f5bd0470d1ec35a2d0bb75c7d0fc1c0cf60e6ad7 (patch) | |
tree | 5be6e754f6a7b8ed38751ce98ad97c335e015988 | |
parent | 2dc72ec7c85790c5f9bb0e0cbf408de1b6260ff2 (diff) |
DB/Gameobject Template: Some spell focus fixes from Vincent-Michael.
Closes #8466
-rw-r--r-- | sql/updates/world/2012_12_02_00_world_game_object.sql | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sql/updates/world/2012_12_02_00_world_game_object.sql b/sql/updates/world/2012_12_02_00_world_game_object.sql new file mode 100644 index 00000000000..3205159a703 --- /dev/null +++ b/sql/updates/world/2012_12_02_00_world_game_object.sql @@ -0,0 +1,24 @@ +-- Some Spell focus corrections +-- Signal Fire +SET @GUID :=99716; +DELETE FROM `gameobject` WHERE `guid`=@GUID; +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +(@GUID,194151,571,1,1,4061.978,7109.135,170.0001,0,0,0,0,1,120,255,1); + +DELETE FROM `gameobject_template` WHERE `entry`=300242; + +-- Shrine Of Remulos +UPDATE `gameobject` SET `id`=15885 WHERE `id`=300142; +DELETE FROM `gameobject_template` WHERE `entry`=300142; + +-- Witherbark Village +UPDATE `gameobject` SET `id`=142698 WHERE `id`=300016; +DELETE FROM `gameobject_template` WHERE `entry`=300016; + +-- Maraudon Portal +UPDATE `gameobject` SET `id`=178400 WHERE `id`=300037; +DELETE FROM `gameobject_template` WHERE `entry`=300037; + +-- Scorched Grove Runeston +UPDATE `gameobject` SET `id`=181260 WHERE `id`=300086; +DELETE FROM `gameobject_template` WHERE `entry`=300086; |