From 724ac01ea1b4ed6077551cfeb3fef55b8af6543d Mon Sep 17 00:00:00 2001 From: syssneck <68868567+syssneck@users.noreply.github.com> Date: Wed, 1 Sep 2021 14:26:52 +0200 Subject: [PATCH] fix(DB/Creature): decrease respawn time of Garrick Padfoot (#7593) --- data/sql/updates/pending_db_world/rev_1630089599912305764.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1630089599912305764.sql diff --git a/data/sql/updates/pending_db_world/rev_1630089599912305764.sql b/data/sql/updates/pending_db_world/rev_1630089599912305764.sql new file mode 100644 index 000000000..4d3303239 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1630089599912305764.sql @@ -0,0 +1,4 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1630089599912305764'); + +-- Decreases the respawntime for Garrick Padfoot to 60 s (90 s in real time when instantly looted) +UPDATE `creature` SET `spawntimesecs` = 60 WHERE `id` = 103 AND `guid` = 80247;