From 13aaeb25f6f28a8c711b057662ac0acf3a164ca6 Mon Sep 17 00:00:00 2001 From: Asthalor <87535580+Asthalor@users.noreply.github.com> Date: Wed, 6 Oct 2021 10:20:56 +0200 Subject: [PATCH] fix(DB/Creature): Fix Incendosaur Respawn Timer (#8296) --- .../sql/updates/pending_db_world/rev_1633501534792643595.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1633501534792643595.sql diff --git a/data/sql/updates/pending_db_world/rev_1633501534792643595.sql b/data/sql/updates/pending_db_world/rev_1633501534792643595.sql new file mode 100644 index 000000000..eec8a878b --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1633501534792643595.sql @@ -0,0 +1,5 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1633501534792643595'); + +-- Change the spawn time of Incendosaur from 500 seconds (9 minutes) to 60 seconds (1 minute) +UPDATE `creature` SET `spawntimesecs` = 60 WHERE (`id` = 9318) AND (`guid` IN (5874 , 5876, 5878, 5879, 5883, 5899 ,5901, 5902, 5904, 5905, 5906, 5907, 5911)); +