fix(DB/Loot): Remove duplicate Void Crystal from disenchant entry 67 (#24871)

Co-authored-by: blinkysc <blinkysc@users.noreply.github.com>
Co-authored-by: Gultask <100873791+Gultask@users.noreply.github.com>
This commit is contained in:
blinkysc
2026-02-25 08:56:37 -06:00
committed by GitHub
parent af567db104
commit 3eab74da3a

View File

@@ -0,0 +1,11 @@
-- Remove erroneous reference from disenchant entry 67 that causes double Void Crystal drops
-- Entry 67 already guarantees 1 Void Crystal (GroupId=0, 100% chance)
-- The reference to table 44012 (GroupId=1, 67% chance) added a second Void Crystal
DELETE FROM `disenchant_loot_template` WHERE `Entry` = 67 AND `Item` = 44012;
DELETE FROM `reference_loot_template` WHERE (`Entry` = 44012);
DELETE FROM `reference_loot_template` WHERE (`Entry` = 34097);
INSERT INTO `reference_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(34097, 29765, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Fallen Hero'),
(34097, 29766, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Fallen Champion'),
(34097, 29767, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Fallen Defender');