From bee7740bab7ac90facfaa05186a5ea747c7a7079 Mon Sep 17 00:00:00 2001 From: Gultask <100873791+Gultask@users.noreply.github.com> Date: Sat, 15 Oct 2022 12:06:38 -0300 Subject: [PATCH] fix(DB/loot): Remove skinning loot from creatures that shouldn't be skinnable (#13348) * Create rev_1665250992619716400.sql * Update rev_1665250992619716400.sql --- .../updates/pending_db_world/rev_1665250992619716400.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1665250992619716400.sql diff --git a/data/sql/updates/pending_db_world/rev_1665250992619716400.sql b/data/sql/updates/pending_db_world/rev_1665250992619716400.sql new file mode 100644 index 000000000..6ea4cd1f6 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1665250992619716400.sql @@ -0,0 +1,7 @@ +-- Rookery Whelp (10161) +DELETE FROM `creature_loot_template` WHERE `Entry` = 10161; +UPDATE `creature_template` SET `lootid` = 0, `skinloot` = 0 WHERE (`entry` = 10161); +-- Broodlord Lashlayer (12017), Death Talon Dragonspawn (12422), Razorgore the Untamed (12435), Vaelastrasz the Corrupt (13020), Corrupted Whelps (14022 to 14025), Ohgan (14988) +UPDATE `creature_template` SET `skinloot` = 0 WHERE (`entry` IN (12017, 12422, 12435, 13020, 14022, 14023, 14024, 14025, 14988)); +-- Remove gold drops from Razorgore adds +UPDATE `creature_template` SET `mingold` = 0, `maxgold` = 0 WHERE `entry` IN (12416, 12420, 12422);