diff options
author | tkrokli <tkrokli@users.noreply.github.com> | 2017-08-06 09:48:36 +0200 |
---|---|---|
committer | tkrokli <tkrokli@users.noreply.github.com> | 2017-08-06 09:48:36 +0200 |
commit | dbda060ae7a31135044495470e46276dad0bcc0e (patch) | |
tree | 29e1f9a0b74ca1d9897fdcedb667051401c63e15 | |
parent | 8de9f1c3592e1c988842cedf8f9c6dd32f75ad33 (diff) |
DB/Quest: A Boaring Time for Grulloc (10721): wrong RewardText content
http://www.wowhead.com/quest=10721/a-boaring-time-for-grulloc
https://wow.gamepedia.com/Quest:A_Boaring_Time_for_Grulloc
- Quest 10721 showed up in-game with the same Reward Text as Quest Description
- quest_template.QuestDescription was inserted as quest_offer_reward.RewardText
- issue also found in https://github.com/dalaranwow/dalaran-wow/issues/1926
- Correct RewardText is based on content from the 3 linked pages above.
-rw-r--r-- | sql/updates/world/3.3.5/2017_08_06_03_world.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2017_08_06_03_world.sql b/sql/updates/world/3.3.5/2017_08_06_03_world.sql new file mode 100644 index 00000000000..a8e5bd75f3c --- /dev/null +++ b/sql/updates/world/3.3.5/2017_08_06_03_world.sql @@ -0,0 +1,4 @@ +-- A Boaring Time for Grulloc (quest ID 10721): use RewardText instead of QuestDescription +UPDATE `quest_offer_reward` + SET `RewardText`="<Baron Sablemane peers inside the gronn's sack and seems satisfied.>$B$BVery well, you have upheld your end of the bargain. With that price paid, I will give Rexxar what he seeks." + WHERE `Id`=10721; |