From 110897c095d9e1d959bcd4e396798f7c19602f78 Mon Sep 17 00:00:00 2001 From: ZhengPeiRu21 <98835050+ZhengPeiRu21@users.noreply.github.com> Date: Tue, 18 Apr 2023 18:05:10 -0600 Subject: [PATCH] fix(DB/Loot): Remove skinning loot from several Buzzard type mobs (#15908) --- data/sql/updates/pending_db_world/rev_1681146335796877700.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1681146335796877700.sql diff --git a/data/sql/updates/pending_db_world/rev_1681146335796877700.sql b/data/sql/updates/pending_db_world/rev_1681146335796877700.sql new file mode 100644 index 000000000..41093efea --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1681146335796877700.sql @@ -0,0 +1,4 @@ +-- +-- Remove skinning loot from Buzzard creatures +UPDATE `creature_template` SET `skinloot` = 0 WHERE `entry` IN (5982, 5983, 5436, 7376); +DELETE FROM `skinning_loot_template` WHERE `Entry` IN (5982, 5983);