fix(DB/creature_loot): Remove Plaguebloom drops from NPCs (#7950)

This commit is contained in:
Azcobu 2021-09-21 09:57:31 +09:30 committed by GitHub
parent 5bc8b0dfbf
commit 63c1dc3348
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,7 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1631944525344217322');
-- Deletes Plaguebloom from all NPC loot tables
DELETE FROM `creature_loot_template` WHERE `item` = 13466 AND `comment` LIKE '%Plaguebloom%';
-- Remove loot from Crimson Bodyguard
UPDATE `creature_template` SET `lootid` = 0 WHERE `Entry` = 13118 AND `Name` = 'Crimson Bodyguard';