mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-24 10:56:38 +01:00
DB/Gameobject Template: Some spell focus fixes from Vincent-Michael.
Closes #8466
This commit is contained in:
24
sql/updates/world/2012_12_02_00_world_game_object.sql
Normal file
24
sql/updates/world/2012_12_02_00_world_game_object.sql
Normal 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;
|
||||
Reference in New Issue
Block a user