From 4efcc16181d697095b0577ffcf04210b33d088c5 Mon Sep 17 00:00:00 2001 From: Peter Date: Mon, 1 Feb 2021 23:04:14 +0100 Subject: [PATCH] fix(DB/gameobject): The Scarlet Key should be lootable by all (#4317) The Scarlet Key from Doan's Strongbox inside Scarlet Monastery Library wing should be lootable by all. Currently only one can loot and then the respawn is 24 hours. This fix will make it respawn almost instantly for all to loot. Reference: https://wowwiki.fandom.com/wiki/The_Scarlet_Key Co-authored-by: Zoidwaffle --- .../sql/updates/pending_db_world/rev_1610987194142626485.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1610987194142626485.sql diff --git a/data/sql/updates/pending_db_world/rev_1610987194142626485.sql b/data/sql/updates/pending_db_world/rev_1610987194142626485.sql new file mode 100644 index 000000000..b658dfac6 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1610987194142626485.sql @@ -0,0 +1,5 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1610987194142626485'); + +-- The Scarlet Key from Doan's Strongbox in the Scarlet Monastery Library should be lootable by all + +UPDATE `gameobject` SET `spawntimesecs`=2 WHERE `guid`=32247;