From 78fbc77be2d428e3e47cb65c240fec2dab6cefbf Mon Sep 17 00:00:00 2001 From: Ryan Turner Date: Thu, 10 Apr 2025 09:08:50 +0100 Subject: [PATCH] fix (db/Conditions) - Kael'thas Sunstrider's Heroic loot ref will drop the correct recipes to their respective proffesion. (#21884) --- data/sql/updates/pending_db_world/rev_1744203507462519600.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1744203507462519600.sql diff --git a/data/sql/updates/pending_db_world/rev_1744203507462519600.sql b/data/sql/updates/pending_db_world/rev_1744203507462519600.sql new file mode 100644 index 000000000..5b1ed2b65 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1744203507462519600.sql @@ -0,0 +1,2 @@ +-- Changes the required skill from Blacksmithing (164) to Alchemy (171) to drop for the Items Recipe: Elixir of Empowerment (35294) and Recipe: Haste Potion (35295) for the LootReference (35008) +UPDATE `conditions` SET `ConditionValue1` = 171 WHERE `SourceTypeOrReferenceId` = 10 AND `SourceGroup` = 35008 AND `ConditionTypeOrReference` = 7 AND `ConditionValue1` = 164 AND `SourceEntry` = 35294 OR `SourceEntry` = 35295;