diff options
author | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2012-06-02 20:03:12 +0200 |
---|---|---|
committer | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2012-06-02 20:03:12 +0200 |
commit | beb91af01192600db9510eb24a95146a374bb027 (patch) | |
tree | 85064f94bd838e7209f0edffd90cefa9a43609d8 | |
parent | 3b87f1d29bd9c5a613f3bd96c75d88781c5782fe (diff) |
DB/Loot: Fix WOTLK items dropping off level 20 mobs
Closes #6692
-rw-r--r-- | sql/updates/world/2012_06_02_04_reference_loot_template.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/2012_06_02_04_reference_loot_template.sql b/sql/updates/world/2012_06_02_04_reference_loot_template.sql new file mode 100644 index 00000000000..57be9083048 --- /dev/null +++ b/sql/updates/world/2012_06_02_04_reference_loot_template.sql @@ -0,0 +1,11 @@ +DELETE FROM `reference_loot_template` WHERE `entry` IN (14011,14012); +INSERT INTO `reference_loot_template` (`entry`,`item`,`ChanceOrQuestChance`,`lootmode`,`groupid`,`mincountOrRef`,`maxcount`) VALUES +(14011,37759,0,1,1,1,1), -- Rhie-ay's Clutching Gauntlets +(14011,37768,0,1,1,1,1), -- Leggings of Violent Exsanguination +(14011,37790,0,1,1,1,1), -- Belt of Crystalline Tears +(14011,37806,0,1,1,1,1), -- Zabra's Misplaced Staff +(14011,37808,0,1,1,1,1), -- Dragonjaw Mauler +(14011,37809,0,1,1,1,1), -- Roc-Feather Longbow +(14012,3014,-70,1,0,1,1), -- Battleworn Axe +(14012,7906,-8,1,0,1,1); -- Horns of Nez'ra +UPDATE `creature_loot_template` SET `mincountOrRef`=14012 WHERE `mincountOrRef`=14011 AND `entry` IN (4464,436,437,440,485,615,4064,4065,4462,4463,435); |