From 8b6c37a8b63435d28bf185010bbd3ac23d826df6 Mon Sep 17 00:00:00 2001 From: acidmanifesto Date: Tue, 4 Jan 2022 19:37:22 +0100 Subject: [PATCH] Fix (DB\Loot) Copper Bolt Loot fix (#10006) * Fix (DB\Loot) Copper Bolt Loot fix Removes the loot from 3 creatures who should not have the loot per udb audit. * Update rev_1641313085677965557.sql --- data/sql/updates/pending_db_world/rev_1641313085677965557.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1641313085677965557.sql diff --git a/data/sql/updates/pending_db_world/rev_1641313085677965557.sql b/data/sql/updates/pending_db_world/rev_1641313085677965557.sql new file mode 100644 index 000000000..a0c79777d --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1641313085677965557.sql @@ -0,0 +1,4 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1641313085677965557'); + +-- Removes Handful of Copper Bolt loot from creatures who are not suppose to have it +DELETE FROM `creature_loot_template` WHERE (`Entry` IN (2044, 2673, 6250)) AND (`Item`= 4359);