mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-15 23:20:36 +01:00
DB/Quests: make starter quest rewards available (26799 & 26800)
Quests: Those That Couldn't Be Saved (26799) & Recruitment (26800) Issue: Quest can not be completed due to missing DB info for reward items Detail: Cloth items can be rewarded, but not leather, mail, plate or cape Solution: Add DB item info to those quests where core blocks the rewards. Closes #19849
This commit is contained in:
4
sql/updates/world/master/2017_06_07_00_world.sql
Normal file
4
sql/updates/world/master/2017_06_07_00_world.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
-- Quests: Those That Couldn't Be Saved (26799) / Recruitment (26800)
|
||||
-- make the quest rewards selectable for all classes, not only some of them
|
||||
UPDATE `quest_template` SET `RewardChoiceItemID1`= 3275, `RewardChoiceItemQuantity1`=1, `RewardChoiceItemID2`=11847, `RewardChoiceItemQuantity2`=1 WHERE `ID`=26799;
|
||||
UPDATE `quest_template` SET `RewardChoiceItemID1`=11848, `RewardChoiceItemQuantity1`=1, `RewardChoiceItemID2`=11849, `RewardChoiceItemQuantity2`=1, `RewardChoiceItemID3`=11850, `RewardChoiceItemQuantity3`=1 WHERE `ID`=26800;
|
||||
Reference in New Issue
Block a user