From 1470ba4658c920741e6e5dd1a798f94d24623ab6 Mon Sep 17 00:00:00 2001 From: Gultask <100873791+Gultask@users.noreply.github.com> Date: Sun, 7 Aug 2022 16:50:07 -0300 Subject: [PATCH] fix(DB/Creature): remove skinning loot from several creatures (#12627) --- .../pending_db_world/rev_1659629437144429900.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1659629437144429900.sql diff --git a/data/sql/updates/pending_db_world/rev_1659629437144429900.sql b/data/sql/updates/pending_db_world/rev_1659629437144429900.sql new file mode 100644 index 000000000..b035ec9f2 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1659629437144429900.sql @@ -0,0 +1,11 @@ +-- +UPDATE `creature_template` SET `lootid` = 0, `skinloot` = 0, `mingold` = 0, `maxgold` = 0 WHERE (`entry` = 11374); +DELETE FROM `creature_loot_template` WHERE `entry` = 11374; + +UPDATE `creature_template` SET `skinloot` = 0 WHERE (`entry` = 10596); + +UPDATE `creature_template` SET `lootid` = 0, `skinloot` = 0 WHERE (`entry` = 15101); +DELETE FROM `creature_loot_template` WHERE `entry` = 15101; + +UPDATE `creature_template` SET `lootid` = 0, `skinloot` = 0 WHERE (`entry` = 15068); +DELETE FROM `creature_loot_template` WHERE `entry` = 15068;