mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 08:28:32 +01:00
DB/Loot: remove some incorrect drops of three quest reward items
- Items reward of the Hakkari Urn, it must always contain the 3 items (previous had a very little chance of being less than 3)
- Hakkari Urn is the reward from "Secret of the Circle (3447)"
(cherrypicked from e9d527b70f)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
DELETE FROM `creature_loot_template` WHERE `Item` IN (10780, 10781, 10782);
|
||||
DELETE FROM `item_loot_template` WHERE `Item` IN (10780, 10781, 10782);
|
||||
INSERT INTO `item_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`) VALUES
|
||||
(10773, 10780, 0, 100, 0, 1, 0, 1, 1), -- Mark of Hakkar
|
||||
(10773, 10781, 0, 100, 0, 1, 1, 1, 1), -- Hakkari Breastplate
|
||||
(10773, 10782, 0, 100, 0, 1, 2, 1, 1); -- Hakkari Shroud
|
||||
Reference in New Issue
Block a user