aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortkrokli <tkrokli@users.noreply.github.com>2017-08-12 21:10:22 +0200
committertkrokli <tkrokli@users.noreply.github.com>2017-08-12 21:10:22 +0200
commitd09de6425ca789bed991f1e80652d57a7c5ff37b (patch)
treed0f1cff0ff0f723668af7bf838c2d7dc917d9f21
parenteb2769996f01bfd7d7118503a44705711eb309a3 (diff)
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
-rw-r--r--sql/updates/world/3.3.5/2017_08_12_00_world.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2017_08_12_00_world.sql b/sql/updates/world/3.3.5/2017_08_12_00_world.sql
new file mode 100644
index 00000000000..232c6a175c3
--- /dev/null
+++ b/sql/updates/world/3.3.5/2017_08_12_00_world.sql
@@ -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;