fix(DB/creature_loot_template): Emblem of Triumph #3689
This commit is contained in:
parent
788f8b5257
commit
435121083a
1 changed files with 19 additions and 0 deletions
|
|
@ -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 */
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue