diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2014-07-13 20:46:11 +0200 |
---|---|---|
committer | Aokromes <Aokromes@users.noreply.github.com> | 2014-07-13 20:46:11 +0200 |
commit | 5c9e8fa557741e9bd51c455cadc13bac8fb044c7 (patch) | |
tree | 55e9ff385991485e728d3025cb3964eb205ea26d | |
parent | 29e676588589244c6d59996299d078dd67912e80 (diff) |
DB/Gameobject: Deeprun Chest
Closes #12430
-rw-r--r-- | sql/updates/world/2014_07_13_00_world_misc.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/2014_07_13_00_world_misc.sql b/sql/updates/world/2014_07_13_00_world_misc.sql new file mode 100644 index 00000000000..3529596d344 --- /dev/null +++ b/sql/updates/world/2014_07_13_00_world_misc.sql @@ -0,0 +1,6 @@ +-- +SET @OGUID := 5414; + +DELETE FROM `gameobject` WHERE `guid` = @OGUID; +INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES +(@OGUID, 179345, 369, 1, 1, 57.43581, 1206.985, -121.5893, -2.652894, 0, 0, 0, 1, 7200, 255, 1); |