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.
This commit is contained in:
Azcobu
2021-06-08 09:07:05 +09:30
committed by GitHub
parent 0a7017a408
commit 1644e4c000

View File

@@ -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;