mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-22 05:06:24 +00:00
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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user