mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-25 06:36:24 +00:00
fix(DB/creature_loot_template): Emblem of Triumph #3689
This commit is contained in:
@@ -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 */
|
||||
);
|
||||
Reference in New Issue
Block a user