From 63c1dc3348b691a6daaea255406f532881053df2 Mon Sep 17 00:00:00 2001 From: Azcobu <81782124+Azcobu@users.noreply.github.com> Date: Tue, 21 Sep 2021 09:57:31 +0930 Subject: [PATCH] fix(DB/creature_loot): Remove Plaguebloom drops from NPCs (#7950) --- .../updates/pending_db_world/rev_1631944525344217322.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1631944525344217322.sql diff --git a/data/sql/updates/pending_db_world/rev_1631944525344217322.sql b/data/sql/updates/pending_db_world/rev_1631944525344217322.sql new file mode 100644 index 000000000..389e71d7f --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1631944525344217322.sql @@ -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';