From 1090c209b302dee40fd96381ec3538b75cf3f4a7 Mon Sep 17 00:00:00 2001 From: Ryan Turner <16946913+TheSCREWEDSoftware@users.noreply.github.com> Date: Thu, 13 Nov 2025 15:06:11 +0000 Subject: [PATCH] fix(DB/Loot): Fireproof Satchel will now always drop the Ritual of Torch (#23585) --- data/sql/updates/pending_db_world/rev_1762695074553179900.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1762695074553179900.sql diff --git a/data/sql/updates/pending_db_world/rev_1762695074553179900.sql b/data/sql/updates/pending_db_world/rev_1762695074553179900.sql new file mode 100644 index 000000000..d904daadf --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1762695074553179900.sql @@ -0,0 +1,3 @@ +-- Makes sure the Shaman player gets the required ritual toch item and that requires the quest to drop +UPDATE `item_loot_template` SET `Chance` = 0, `QuestRequired` = 1, `GroupId` = 1 WHERE `Entry` = 24336 AND `Item` = 23682; +UPDATE `item_loot_template` SET `Chance` = 0, `GroupId` = 2 WHERE `Entry` = 24336 AND `Item` = 24335;