diff options
author | tkrokli <tkrokli@users.noreply.github.com> | 2017-08-06 09:48:36 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2020-08-22 20:07:07 +0200 |
commit | 521a950f9c0facd892c299b9cda5119519e71022 (patch) | |
tree | d31e4a339645841ca6b3dbf1b853a585ea86b140 | |
parent | 65567046dfa61e1e677340a21d633d5a78cfedd9 (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.
(cherry picked from commit dbda060ae7a31135044495470e46276dad0bcc0e)
-rw-r--r-- | sql/updates/world/master/2020_08_22_12_world_2017_08_06_03_world.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/master/2020_08_22_12_world_2017_08_06_03_world.sql b/sql/updates/world/master/2020_08_22_12_world_2017_08_06_03_world.sql new file mode 100644 index 00000000000..a8e5bd75f3c --- /dev/null +++ b/sql/updates/world/master/2020_08_22_12_world_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; |