diff options
| author | offl <offl@users.noreply.github.com> | 2020-10-05 00:21:32 +0300 |
|---|---|---|
| committer | offl <offl@users.noreply.github.com> | 2020-10-05 00:21:32 +0300 |
| commit | e0ea0fb8968fce7e76283e71a5d6e39dacc30471 (patch) | |
| tree | 63a0c87fca9fdef15fd7c67c99951a66b15e0dfb | |
| parent | f8d959023cf37a4abe3f96ebdf150315ff738381 (diff) | |
DB/Creature: Standardize respawn time for Auchindoun creatures
| -rw-r--r-- | sql/updates/world/3.3.5/2020_10_04_01_world.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2020_10_04_01_world.sql b/sql/updates/world/3.3.5/2020_10_04_01_world.sql new file mode 100644 index 00000000000..c50d7625038 --- /dev/null +++ b/sql/updates/world/3.3.5/2020_10_04_01_world.sql @@ -0,0 +1,4 @@ +-- +UPDATE `creature` SET `spawntimesecs` = 86400 WHERE `spawntimesecs` = 43200 AND `map` BETWEEN 555 AND 558; +UPDATE `creature` SET `spawntimesecs` = 7200 WHERE `spawntimesecs` = 10800 AND `map` BETWEEN 555 AND 558; +UPDATE `creature` SET `spawntimesecs` = 300 WHERE `id` IN (18793,18891,21159,18726,18766,18778); |
