From 4db570098062b815416593b99ae83a47e2fe632a Mon Sep 17 00:00:00 2001 From: Azcobu <81782124+Azcobu@users.noreply.github.com> Date: Thu, 29 Jul 2021 19:55:02 +0930 Subject: [PATCH] fix(DB/Creature): Correct respawn timers for various rare NPCs (#7094) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(DB/Creature): Correct respawn timers for various rare NPCs * Update Dreadscorn 5 hrs -> 6.5 hrs Co-authored-by: Stefano Borzì --- .../rev_1627110823308609260.sql | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1627110823308609260.sql diff --git a/data/sql/updates/pending_db_world/rev_1627110823308609260.sql b/data/sql/updates/pending_db_world/rev_1627110823308609260.sql new file mode 100644 index 000000000..373141c93 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1627110823308609260.sql @@ -0,0 +1,26 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1627110823308609260'); + +-- Set Dreadscorn respawn to 6.5 hours +UPDATE `creature` SET `spawntimesecs` = 23400 WHERE `id` = 8304 AND `guid` = 3902; + +-- Set Gnarl Leafbrother respawn to 40 hours +UPDATE `creature` SET `spawntimesecs` = 144000 WHERE `id` = 5354 AND `guid` = 51842; + +-- Set Cranky Benj respawn to 40 hours +UPDATE `creature` SET `spawntimesecs` = 144000 WHERE `id` = 14223 AND `guid` = 90511; + +-- Set Azzere the Skyblade respawn to 5 hours +UPDATE `creature` SET `spawntimesecs` = 18000 WHERE `id` = 5834 AND `guid` = 51813; + +-- Set Accursed Slitherblade respawn to 26.5 hours +UPDATE `creature` SET `spawntimesecs` = 95400 WHERE `id` = 14229 AND `guid` = 51846; + +-- Set Giggler respawn to 13 hours +UPDATE `creature` SET `spawntimesecs` = 46800 WHERE `id` = 14228 AND `guid` = 51847; + +-- Set Verifonix respawn to 26.5 hours +UPDATE `creature` SET `spawntimesecs` = 95400 WHERE `id` = 14492 AND `guid` IN (49152, 134231, 134232, 134233, 134234, 134235); + +-- Set Diamond Head respawn to 13 hours +UPDATE `creature` SET `spawntimesecs` = 46800 WHERE `id` = 5345 AND `guid` = 51843; +