fix(DB/loot): Remove skinning loot from creatures that shouldn't be skinnable (#13348)

* Create rev_1665250992619716400.sql

* Update rev_1665250992619716400.sql
This commit is contained in:
Gultask
2022-10-15 12:06:38 -03:00
committed by GitHub
parent 414546aeca
commit bee7740bab

View File

@@ -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);