mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-15 18:10:26 +00:00
fix(DB/Loot): Strange Engine Part should be fishable (#17520)
* fix(DB/Loot): Strange Engine Part should be fishable * repeatable + correct gold reward
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
-- Strange Engine Part
|
||||
DELETE FROM `gameobject_loot_template` WHERE `Entry` = 19605 AND `Item` = 34469;
|
||||
INSERT INTO `gameobject_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(19605, 34469, 0, 0.5, 0, 1, 1, 1, 1, 'Strange Engine Part');
|
||||
|
||||
-- Make it repeatable + correct gold reward
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags` = `SpecialFlags`|1 WHERE (`ID` = 11531);
|
||||
UPDATE `quest_template` SET `RewardBonusMoney` = 75900 WHERE (`ID` = 11531);
|
||||
Reference in New Issue
Block a user