From 5d69ce82d2b17cedd16778bd8ce8cd2d9c28e2cf Mon Sep 17 00:00:00 2001 From: Azcobu <81782124+Azcobu@users.noreply.github.com> Date: Fri, 22 Oct 2021 19:10:28 +1030 Subject: [PATCH] fix(DB/creature_loot): removes invalid Goldthorn drops from NPCs (#8649) --- data/sql/updates/pending_db_world/rev_1634737924283682006.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1634737924283682006.sql diff --git a/data/sql/updates/pending_db_world/rev_1634737924283682006.sql b/data/sql/updates/pending_db_world/rev_1634737924283682006.sql new file mode 100644 index 000000000..b59fb64ed --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1634737924283682006.sql @@ -0,0 +1,4 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1634737924283682006'); + +-- Deletes Goldthorn from 370 NPCs not listed below +DELETE FROM `creature_loot_template` WHERE `item` = 3821 AND `entry` NOT IN (1081, 1812, 5354, 5481, 5485, 5490, 6509, 6510, 6511, 6512, 6517, 6518, 6519, 6527, 7100, 7101, 7139, 7584, 8384, 11462, 12219, 12220, 12223, 12224, 13022, 13141, 13142);