From 085a8d31a07b47d3f9e923b8d2471e166389828e Mon Sep 17 00:00:00 2001 From: Tereneckla Date: Sun, 12 Jan 2025 13:33:46 +0000 Subject: [PATCH] fix(DB/Loot): Malacrass should drop 2 pieces of loot and sometimes Tiny Vodoo Mask (#21139) --- .../sql/updates/pending_db_world/rev_1736616775226885710.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1736616775226885710.sql diff --git a/data/sql/updates/pending_db_world/rev_1736616775226885710.sql b/data/sql/updates/pending_db_world/rev_1736616775226885710.sql new file mode 100644 index 000000000..41820b13d --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1736616775226885710.sql @@ -0,0 +1,5 @@ +DELETE FROM `reference_loot_template` WHERE `Entry` = 34078 AND `Item` = 34029; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(24239, 34029, 0, 30, 0, 1, 0, 1, 1, 'Hex Lord Malacrass - Tiny Voodoo Mask'); + +UPDATE `creature_loot_template` SET `MinCount` = 2, `MaxCount` = 2 WHERE `Entry` = 24239 AND `Reference` = 34078;