diff options
author | Killyana <morphone1@gmail.com> | 2017-12-22 20:52:32 +0100 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2017-12-22 20:52:32 +0100 |
commit | ab8ce7f215148fd4a3705923201fa7f59dfe07a5 (patch) | |
tree | 17b62ec95fb035464ea97d83d4624b6d7ae1e93b | |
parent | 4e665597ebc21403332eff3676c94c96101e235d (diff) |
DB: Restore a deleted spawn
-rw-r--r-- | sql/updates/world/3.3.5/2017_12_22_02_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2017_12_22_02_world.sql b/sql/updates/world/3.3.5/2017_12_22_02_world.sql new file mode 100644 index 00000000000..c6e249907bd --- /dev/null +++ b/sql/updates/world/3.3.5/2017_12_22_02_world.sql @@ -0,0 +1,6 @@ +-- +SET @CGUID:= 42637; -- 1 guid + +DELETE FROM `creature` WHERE `guid` = @CGUID; +INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`) VALUES +(@CGUID, 16031, 329, 0, 0, 1, 1, 0, 0, 4044.78, -3333.68, 117.26, 4.153883, 7200, 0, 0, 4120, 0, 0, 0, 0, 0, '', 0); |