From 3eab74da3a07ab94257ec02cea359f06dceb87fb Mon Sep 17 00:00:00 2001 From: blinkysc <37940565+blinkysc@users.noreply.github.com> Date: Wed, 25 Feb 2026 08:56:37 -0600 Subject: [PATCH] fix(DB/Loot): Remove duplicate Void Crystal from disenchant entry 67 (#24871) Co-authored-by: blinkysc Co-authored-by: Gultask <100873791+Gultask@users.noreply.github.com> --- .../pending_db_world/rev_1772001496427044016.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1772001496427044016.sql diff --git a/data/sql/updates/pending_db_world/rev_1772001496427044016.sql b/data/sql/updates/pending_db_world/rev_1772001496427044016.sql new file mode 100644 index 000000000..3b5a5a090 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1772001496427044016.sql @@ -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');