From 1644e4c0009c544e8488976ae2dd209878c1b358 Mon Sep 17 00:00:00 2001 From: Azcobu <81782124+Azcobu@users.noreply.github.com> Date: Tue, 8 Jun 2021 09:07:05 +0930 Subject: [PATCH] fix(DB/loot): Removes Scarlet Set items from rand_loot_temp tables (#6102) Two Scarlet set items, the Gauntlets and Wristguards, were contained in 3 reference_loot_template tables widely available to many mobs. This was not correct, and they should only be dropped by mobs inside SM. This PR removes them from the RLTs. --- .../updates/pending_db_world/rev_1622263128329617917.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1622263128329617917.sql diff --git a/data/sql/updates/pending_db_world/rev_1622263128329617917.sql b/data/sql/updates/pending_db_world/rev_1622263128329617917.sql new file mode 100644 index 000000000..4d3ea255b --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1622263128329617917.sql @@ -0,0 +1,9 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1622263128329617917'); + +-- Remove Scarlet Gauntlets from RLTs +DELETE FROM `reference_loot_template` WHERE `Entry` = 24056 AND `Item` = 10331; +DELETE FROM `reference_loot_template` WHERE `Entry` = 526790 AND `Item` = 10331; +-- Remove Scarlet Wristguard from RLT +DELETE FROM `reference_loot_template` WHERE `Entry` = 24054 AND `Item` = 10333; + +