From 0baa8bedb1305876e484728603d0c82924d1cc4d Mon Sep 17 00:00:00 2001 From: Ryan Turner Date: Sun, 30 Mar 2025 18:29:19 +0100 Subject: [PATCH] fix(db/CreatureLoot) - Removal of "Rod of Lianthe" and "Nightmare Vine" from "Eclipsion Hawkstrider"'s Loot (#21816) --- data/sql/updates/pending_db_world/rev_1743350402194716900.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1743350402194716900.sql diff --git a/data/sql/updates/pending_db_world/rev_1743350402194716900.sql b/data/sql/updates/pending_db_world/rev_1743350402194716900.sql new file mode 100644 index 000000000..41bec51ca --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1743350402194716900.sql @@ -0,0 +1,4 @@ +-- Removes "Rod of Lianthe" and "Nightmare Vine" from "Eclipsion Hawkstrider"'s Loot +DELETE FROM `creature_loot_template` WHERE (`Entry` = 21627) AND (`Item` IN (22792, 31317)); + +UPDATE `creature_template` SET `lootid` = 0 WHERE (`entry` = 21627);