diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2014-06-23 06:40:35 +0200 |
---|---|---|
committer | Aokromes <Aokromes@users.noreply.github.com> | 2014-06-23 06:40:35 +0200 |
commit | 4b11b59705535ce691b416bf59bfec4ee8c5ff1b (patch) | |
tree | 521c87f39192b6655400656dfeb6b2f257b97493 | |
parent | 2d884e7d0911897d5459ce0055f968a23ec8665b (diff) |
DB/Gameobject: Decoy!
By wintergreen77, closes #4080
-rw-r--r-- | sql/updates/world/2014_06_23_04_world_gameobject.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/2014_06_23_04_world_gameobject.sql b/sql/updates/world/2014_06_23_04_world_gameobject.sql new file mode 100644 index 00000000000..d3efda89e5b --- /dev/null +++ b/sql/updates/world/2014_06_23_04_world_gameobject.sql @@ -0,0 +1,6 @@ +-- +SET @GUID1 := 5380; -- Set by TDB team + +DELETE FROM `gameobject` WHERE (`guid`=@GUID1); +INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES +(@GUID1, 180659, 1, 1, 1, 5086.19, -5116.32, 931.162, 4.78877, 0, 0, 0.679593, -0.733589, -150, 0, 1); |