From 5caef28b48f8823607722f6e182c683aac103673 Mon Sep 17 00:00:00 2001 From: Gultask <100873791+Gultask@users.noreply.github.com> Date: Sun, 18 Jan 2026 17:15:27 -0300 Subject: [PATCH] fix(DB/Loot): Sheep (1933) should be able to drop Wool Cloth if skinned (#24436) Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../updates/pending_db_world/rev_1768594608342509600.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1768594608342509600.sql diff --git a/data/sql/updates/pending_db_world/rev_1768594608342509600.sql b/data/sql/updates/pending_db_world/rev_1768594608342509600.sql new file mode 100644 index 000000000..cf03e8dcc --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1768594608342509600.sql @@ -0,0 +1,8 @@ +-- Add skinning loot table for creature 1933 (Sheep) to enable Ruined Leather Scraps, Wool Cloth, and Light Leather drops. +UPDATE `creature_template` SET `skinloot` = 1933 WHERE (`entry` = 1933); + +DELETE FROM `skinning_loot_template` WHERE (`Entry` = 1933); +INSERT INTO `skinning_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(1933, 2934, 0, 55, 0, 1, 1, 1, 1, 'Ruined Leather Scraps'), +(1933, 2592, 0, 35, 0, 1, 1, 1, 1, 'Wool Cloth'), +(1933, 2318, 0, 10, 0, 1, 1, 1, 1, 'Light Leather');