fix(DB/creature_loot_template): Emblem of Triumph #3689

This commit is contained in:
aradep
2020-11-17 12:26:47 -04:00
committed by GitHub
parent 788f8b5257
commit 435121083a

View File

@@ -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 */
);