mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-31 17:43:47 +00:00
fix(DB/Loot): Adjust Weather-Journal Drops (#24524)
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
--
|
||||
-- Remove Weather-Beaten Journal from Dark Runed Chest ref
|
||||
DELETE FROM `reference_loot_template` WHERE (`Entry` = 35037) AND (`Item` IN (34109));
|
||||
|
||||
-- Add Weather-Beaten Journal to Bag of Fishing Treasures
|
||||
SET @CHANCE := 20;
|
||||
DELETE FROM `item_loot_template` WHERE (`Entry` = 35348) AND (`Item` IN (34109));
|
||||
INSERT INTO `item_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(35348, 34109, 0, @CHANCE, 0, 1, 0, 1, 1, 'Weather-Beaten Journal');
|
||||
|
||||
-- Add Weather-Beaten Journal to Bag of Fishing Treasures
|
||||
SET @CHANCE := 15;
|
||||
DELETE FROM `item_loot_template` WHERE (`Entry` = 34863) AND (`Item` IN (34109));
|
||||
INSERT INTO `item_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(34863, 34109, 0, @CHANCE, 0, 1, 0, 1, 1, 'Weather-Beaten Journal');
|
||||
Reference in New Issue
Block a user