diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2014-06-19 06:54:05 +0200 |
---|---|---|
committer | Aokromes <Aokromes@users.noreply.github.com> | 2014-06-19 06:54:05 +0200 |
commit | 1962b68ac3291ab36301d5f4f614cd458c4e357f (patch) | |
tree | e14cfaa4747bb6391de42eb7b6fbd3790816fed1 | |
parent | 232eaae69cd774fb2ce4014c61c77d6a5c685b01 (diff) |
DB/Creature: Spawn Thalorien Dawnseeker's remains
Closes #11017
-rw-r--r-- | sql/updates/world/2014_06_17_00_world_creature.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/2014_06_17_00_world_creature.sql b/sql/updates/world/2014_06_17_00_world_creature.sql new file mode 100644 index 00000000000..d2c40d74cc7 --- /dev/null +++ b/sql/updates/world/2014_06_17_00_world_creature.sql @@ -0,0 +1,5 @@ +-- +SET @CGUID = 950; +DELETE FROM `creature` WHERE `guid` = @CGUID; +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `MovementType`) VALUES +(@CGUID, 37552, 530, 1, 1, 11792.01, -7065.793, 25.94043, 5.009095, 120, 0, 0); |