diff options
author | CraftedRO <CraftedRO@users.noreply.github.com> | 2022-11-05 19:02:54 +0100 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2022-11-05 19:02:54 +0100 |
commit | 1dabfb6578531ecfa96d373f803a750f740fd8cc (patch) | |
tree | 6adf8e593f8562d56f256ba4e35390167dbbe4ad | |
parent | b1be7437c56ebd32b09336fb81cba20679fd9666 (diff) |
DB/Creature: Correct respawn time for Tethis and King Bangalash
Closes #28465
-rw-r--r-- | sql/updates/world/3.3.5/2022_11_05_01_world.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2022_11_05_01_world.sql b/sql/updates/world/3.3.5/2022_11_05_01_world.sql new file mode 100644 index 00000000000..83b16389383 --- /dev/null +++ b/sql/updates/world/3.3.5/2022_11_05_01_world.sql @@ -0,0 +1,8 @@ +-- Tethis +UPDATE `creature` SET `spawntimesecs`=300 WHERE `id`=730; +-- King Bangalash +UPDATE `creature` SET `spawntimesecs`=300 WHERE `id`=731; +-- Bhag'thera +UPDATE `creature` SET `spawntimesecs`=300 WHERE `id`=728; +-- Mai'Zoth +UPDATE `creature` SET `spawntimesecs` =300 WHERE `id` = 818; |