From 5df23db10114a94f580e200544a1267b3a3ee5d0 Mon Sep 17 00:00:00 2001 From: elthehablo <83884799+elthehablo@users.noreply.github.com> Date: Thu, 30 Mar 2023 23:35:52 +0200 Subject: [PATCH] fix(DB/Loot): Remove Bloodforged Guard and Gold-Trimmed Cuffs from reference loot (#15609) * fix(DB/Loot): removal of BOP quest loot removes two quest items (Gold-Trimmed Cuffs and Bloodforged Guard) from a reference loot table used by a few mobs in Hellfire Peninsula. * Update data/sql/updates/pending_db_world/remove-bop-quest-loot.sql --- data/sql/updates/pending_db_world/remove-bop-quest-loot.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 data/sql/updates/pending_db_world/remove-bop-quest-loot.sql diff --git a/data/sql/updates/pending_db_world/remove-bop-quest-loot.sql b/data/sql/updates/pending_db_world/remove-bop-quest-loot.sql new file mode 100644 index 000000000..6365c749b --- /dev/null +++ b/data/sql/updates/pending_db_world/remove-bop-quest-loot.sql @@ -0,0 +1 @@ +DELETE FROM reference_loot_template WHERE (`Entry` = 4110) AND (`Item` IN (30520, 30986));