From 5e99737873f68ecf7be07f3e84cbac6fca741cb5 Mon Sep 17 00:00:00 2001 From: Peter Date: Thu, 11 Mar 2021 14:59:50 +0100 Subject: [PATCH] fix(DB/object): Increase respawn timer of Booty Bay fishing pool (#4780) --- .../updates/pending_db_world/rev_1615362796749970694.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1615362796749970694.sql diff --git a/data/sql/updates/pending_db_world/rev_1615362796749970694.sql b/data/sql/updates/pending_db_world/rev_1615362796749970694.sql new file mode 100644 index 000000000..a630bafd5 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1615362796749970694.sql @@ -0,0 +1,7 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1615362796749970694'); + +-- Booty Bay fishing, add description +UPDATE `pool_gameobject` SET `description`="Fishing pool - Booty Bay" WHERE `pool_entry`=268; + +-- Change respawn of items in pool +UPDATE `gameobject` SET `spawntimesecs`=3600 WHERE `guid` IN (50320,64627);