From 321934d717b3c93c74c9d7ff76f2714eabc0f125 Mon Sep 17 00:00:00 2001 From: Gultask <100873791+Gultask@users.noreply.github.com> Date: Sat, 27 Dec 2025 18:47:00 -0300 Subject: [PATCH] fix(DB/Loot): Dream Shard and Small Dream Shard should not drop from mobs (#24229) --- .../sql/updates/pending_db_world/rev_1766864667985124500.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1766864667985124500.sql diff --git a/data/sql/updates/pending_db_world/rev_1766864667985124500.sql b/data/sql/updates/pending_db_world/rev_1766864667985124500.sql new file mode 100644 index 000000000..0ae490b71 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1766864667985124500.sql @@ -0,0 +1,5 @@ +-- Delete from Naxxramas References (was alongside recipes) +DELETE FROM `reference_loot_template` WHERE `Entry` = 35081 AND `Item` = 34052; + +-- Delete Small Dream Shard from loose creatures +DELETE FROM `creature_loot_template` WHERE `Entry` IN (24791, 25686) AND `Item` = 34053 AND `Reference` = 0;