From a27996d7061988a6bb98b639cfbe10b6736a885a Mon Sep 17 00:00:00 2001 From: syssneck <68868567+syssneck@users.noreply.github.com> Date: Tue, 21 Sep 2021 05:30:11 +0200 Subject: [PATCH] fix(DB/creature_loot_template): Elixir of Demonslaying should not drop (#7988) --- data/sql/updates/pending_db_world/rev_1632053563315305884.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1632053563315305884.sql diff --git a/data/sql/updates/pending_db_world/rev_1632053563315305884.sql b/data/sql/updates/pending_db_world/rev_1632053563315305884.sql new file mode 100644 index 000000000..2011e88a1 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1632053563315305884.sql @@ -0,0 +1,4 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1632053563315305884'); + +-- Deletes Elixir of Demonslaying drop from 7 mobs, that shouldn't drop the item +DELETE FROM `creature_loot_template` WHERE `Item` = 9224 AND `Entry` IN (2647, 5988, 8598, 8912, 9240, 10469, 11738);