diff options
| author | Killyana <morphone1@gmail.com> | 2016-05-31 17:18:19 +0200 |
|---|---|---|
| committer | Killyana <morphone1@gmail.com> | 2016-05-31 17:18:19 +0200 |
| commit | dec66e3174a7cd4352ebb5d43ba678e477c09ceb (patch) | |
| tree | 64d85f0222aa0fd5e6633e94fa164c0dd45dc2d2 | |
| parent | 2a9732031f49bcec389501f7d94c614f8e0e76e8 (diff) | |
DB/Creature: Remove and fix some wrong spawns in Eversong Woods
Closes #17230
By SnapperRy and lyn1337
| -rw-r--r-- | sql/updates/world/3.3.5/2016_05_31_06_world.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2016_05_31_06_world.sql b/sql/updates/world/3.3.5/2016_05_31_06_world.sql new file mode 100644 index 00000000000..46d8b875c82 --- /dev/null +++ b/sql/updates/world/3.3.5/2016_05_31_06_world.sql @@ -0,0 +1,10 @@ +-- +-- remove mis-spawned Mistbat (entry: 16353) +DELETE FROM `creature` WHERE `guid`=57016; + +-- remove one too many spawned Elder Springpaw (entry: 15651) +DELETE FROM `creature` WHERE `guid`=55946; + +-- set random movement and spawn distance to the common value for that creature +UPDATE `creature` SET `spawndist`=5, `MovementType`=1 WHERE `guid`=55942; +UPDATE `creature` SET `spawndist`=5, `MovementType`=1 WHERE `guid`=55945; |
