DB/Quest: A Haunted History (10624): add missing progress & reward text

- missing " - obviously." at the end of Progress text (quest_request_items).
- missing "<Hildagard begins crafting something out of the ash.>" in Reward text.

http://www.wowhead.com/quest=10624/a-haunted-history
https://wow.gamepedia.com/Quest:A_Haunted_History
https://github.com/TrinityCore/TrinityCore/blob/master/sql/old/4.3.4/TDB0_to_TDB1_updates/world/012_quest_template.sql
This commit is contained in:
tkrokli
2017-08-12 21:10:22 +02:00
committed by Aokromes
parent 622736286f
commit 97da5be80b

View File

@@ -0,0 +1,8 @@
-- A Haunted History (10624): add missing bits of Progress text & Reward text
UPDATE `quest_request_items`
SET `CompletionText`="What do you mean? I'm going to make something out of the ash - obviously."
WHERE `ID` = 10624;
UPDATE `quest_offer_reward`
SET `RewardText`="Your world is about to change, $N.$B$B<Hildagard begins crafting something out of the ash.>"
WHERE `ID` = 10624;