DB/Gameobject Template: Some spell focus fixes from Vincent-Michael.

Closes #8466
This commit is contained in:
Malcrom
2012-12-02 10:04:01 -03:30
parent 2dc72ec7c8
commit f5bd0470d1

View File

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