From e9c91d6bf112a3a495ac7ed6389496e8bebf38ca Mon Sep 17 00:00:00 2001 From: Ryan Turner <16946913+TheSCREWEDSoftware@users.noreply.github.com> Date: Thu, 27 Nov 2025 22:16:00 +0000 Subject: [PATCH] fix(DB/Gameobject): Increase the respawn time of all northerend resource objects (#23938) --- .../updates/pending_db_world/rev_1764259201755392600.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1764259201755392600.sql diff --git a/data/sql/updates/pending_db_world/rev_1764259201755392600.sql b/data/sql/updates/pending_db_world/rev_1764259201755392600.sql new file mode 100644 index 000000000..f4b73e5db --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1764259201755392600.sql @@ -0,0 +1,7 @@ +-- Sets all Herbs spawn time to be 15 minutes (as they are currently not pooled). +-- Goldclover, Tiger Lily, Talandra's Rose, Lichbloom, Icethorn, Frozen Herb (190173, 190174 and 190175), Adder's Tongue and Frost Lotus (currently can be farmed in an instance for free.) +UPDATE `gameobject` SET `spawntimesecs` = 900 WHERE `id` IN (189973, 190169, 190170, 190171, 190172, 190173, 190174, 190175, 191019, 190176) AND `SpawnMask` != 3; + +-- Sets all Ore Veins spawn time to be 15 minutes (as they are currently not pooled). +-- Colbat Deposit, Rich Cobalt Deposit, Sranoite Depoist, Rich Saronite Deposit, Titatinum Vein and Pure Sarotine Depoist +UPDATE `gameobject` SET `spawntimesecs` = 900 WHERE `id` IN (189980, 189981, 189978, 189979, 191133, 195036) AND `SpawnMask` != 3;