mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 23:50:44 +01:00
DB/Creature: Add missing Challe & Orphan Matron Aria Spawns
This commit is contained in:
9
sql/updates/world/2012_05_1_00_world_creature.sql
Normal file
9
sql/updates/world/2012_05_1_00_world_creature.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
-- Add missing Challe & Orphan Matron Aria Spawns
|
||||
SET @GUID := 41876;
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @GUID AND @GUID+1;
|
||||
INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`) VALUES
|
||||
(@GUID,23101,530,1,1,-480.4989,7499.029,181.2889,3.560472,120,0,0,1,0,0),
|
||||
(@GUID+1,34365,571,1,1,5716.604,642.8611,646.2927,5.88176,120,0,0,1,0,0);
|
||||
-- Add to game event creature
|
||||
DELETE FROM `game_event_creature` WHERE `guid`=@GUID+1;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`,`guid`) VALUES (10,@GUID+1);
|
||||
Reference in New Issue
Block a user