From 8f54bce4673923cf9545bef58ae79cd972635e9b Mon Sep 17 00:00:00 2001 From: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> Date: Thu, 11 Jun 2026 12:27:54 -0400 Subject: [PATCH] fix(DB/Loot): Replace Waterlogged Recipe with correct item ID. (#24193) Co-authored-by: Ryan Turner <16946913+TheSCREWEDSoftware@users.noreply.github.com> --- data/sql/updates/pending_db_world/waterlogged-recipe-item.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 data/sql/updates/pending_db_world/waterlogged-recipe-item.sql diff --git a/data/sql/updates/pending_db_world/waterlogged-recipe-item.sql b/data/sql/updates/pending_db_world/waterlogged-recipe-item.sql new file mode 100644 index 000000000..48c931fa5 --- /dev/null +++ b/data/sql/updates/pending_db_world/waterlogged-recipe-item.sql @@ -0,0 +1,2 @@ +UPDATE `reference_loot_template` SET `Item` = 49667 WHERE `Item` = 48679 AND `entry` = 10016; +UPDATE `conditions` SET `SourceEntry` = 49667, `Comment` = 'Only drop "Waterlogged Recipe" (49667) from "Bag of Fishing Treasures" (46007) if the player has at least 300 cooking skill' WHERE (`SourceTypeOrReferenceId` = 10) AND (`SourceGroup` = 10016) AND (`SourceEntry` = 48679) AND (`SourceId` = 0) AND (`ElseGroup` = 0) AND (`ConditionTypeOrReference` = 7) AND (`ConditionTarget` = 0) AND (`ConditionValue1` = 185) AND (`ConditionValue2` = 300) AND (`ConditionValue3` = 0);