From 435121083a4c3f9aa46585f75f613f57245b2181 Mon Sep 17 00:00:00 2001 From: aradep <61268368+aradep@users.noreply.github.com> Date: Tue, 17 Nov 2020 12:26:47 -0400 Subject: [PATCH] fix(DB/creature_loot_template): Emblem of Triumph #3689 --- .../rev_1605306538260467100.sql | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1605306538260467100.sql diff --git a/data/sql/updates/pending_db_world/rev_1605306538260467100.sql b/data/sql/updates/pending_db_world/rev_1605306538260467100.sql new file mode 100644 index 000000000..f3617b0cb --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1605306538260467100.sql @@ -0,0 +1,19 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1605306538260467100'); + +/* Match MinCount with MaxCount for [Emblem of Triumph] in boss loot. */ + +/* 1-2 => 1-1 */ +UPDATE `creature_loot_template` SET `MaxCount`=1 WHERE `MaxCount`=2 AND `MinCount`=1 AND `Item`=47241 AND `Entry` IN +( +15989, /* Sapphiron 10-man */ +33694, /* Stormcaller Brundir 25-man */ +33724, /* Razorscale 25-man */ +33885, /* XT-002 Deconstructor 25-man */ +34175 /* Auriaya 25-man */ +); + +/* 1-2 => 2-2 */ +UPDATE `creature_loot_template` SET `MinCount`=2 WHERE `MinCount`=1 AND `MaxCount`=2 AND `Item`=47241 AND `Entry` IN +( +15990 /* Kel'thuzad 10-man */ +);