From f66971ecc52d8f04c9b9f59625ddf069617ef2b9 Mon Sep 17 00:00:00 2001 From: buddiman Date: Fri, 17 Dec 2021 18:40:20 +0100 Subject: [PATCH] fix(DB/Loot): Remove incorrect blacksmith recipe drops (#9698) According to wowhead and wowpedia the three blackmithing recipes (11614, 11615, 12827) are only lootable from an object so they should be removed from any creature loot as they can't drop the item. - https://github.com/azerothcore/azerothcore-wotlk/issues/9681 - https://github.com/azerothcore/azerothcore-wotlk/issues/9684 - https://github.com/azerothcore/azerothcore-wotlk/issues/9685 --- data/sql/updates/pending_db_world/rev_1639488515603583485.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1639488515603583485.sql diff --git a/data/sql/updates/pending_db_world/rev_1639488515603583485.sql b/data/sql/updates/pending_db_world/rev_1639488515603583485.sql new file mode 100644 index 000000000..e4734e1f2 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1639488515603583485.sql @@ -0,0 +1,4 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1639488515603583485'); + +DELETE FROM `creature_loot_template` WHERE `Item` IN (12827, 11615, 11614); +