From e05b78b9223d66a2a604186cbe84caab3ae9f4bd Mon Sep 17 00:00:00 2001 From: acidmanifesto Date: Thu, 16 Dec 2021 19:28:58 +0100 Subject: [PATCH] Fix (DB) Loot Correction (#9728) While Triaging https://github.com/chromiecraft/chromiecraft/issues/1893 I performed a creature loot table audit and discovered one item that is no present in any sniff or datamining. The item in question is the Stranglekelp. This loot is not mentioned or showed in any sniff or tables dealing with the rare creature Lady Zephris https://tbc.wowhead.com/npc=14277/lady-zephris --- data/sql/updates/pending_db_world/rev_1639602793583729055.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1639602793583729055.sql diff --git a/data/sql/updates/pending_db_world/rev_1639602793583729055.sql b/data/sql/updates/pending_db_world/rev_1639602793583729055.sql new file mode 100644 index 000000000..a68ae072d --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1639602793583729055.sql @@ -0,0 +1,4 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1639602793583729055'); + +-- remove item from loot table +DELETE FROM `creature_loot_template` WHERE `Entry`=14277 AND `Item`=3820 AND `Reference`=0 AND `GroupId`=0;