diff options
author | tkrokli <tkrokli@users.noreply.github.com> | 2017-04-22 08:08:49 +0200 |
---|---|---|
committer | tkrokli <tkrokli@users.noreply.github.com> | 2017-04-22 08:08:49 +0200 |
commit | 0fe66b4c51944a775ea91dbeff31cd5decc8a918 (patch) | |
tree | bfcfed819d2fa9026e320157c677b0dd2cd9a52c | |
parent | f42ff8c6ba0609c2f774440dd30981356c1ffd63 (diff) |
DB/Quests: show actual player name in reward text (5064)
- http://www.wowhead.com/quest=5064/grimtotem-spying
Quest: Grimtotem Spying
Current RewardText contains the name 'Mac' instead of $N.
This update will replace it and show the player name as intended.
-rw-r--r-- | sql/updates/world/3.3.5/2017_04_22_00_world_335.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2017_04_22_00_world_335.sql b/sql/updates/world/3.3.5/2017_04_22_00_world_335.sql new file mode 100644 index 00000000000..a4d36b3dbd8 --- /dev/null +++ b/sql/updates/world/3.3.5/2017_04_22_00_world_335.sql @@ -0,0 +1,5 @@ +-- replace "Mac" with actual player name ($N) in the reward text +UPDATE `quest_offer_reward` +SET `RewardText`= "Great Spirit Totem! This is dire news indeed. I must begin to plan for whatever may come.$b$b$N, as promised, here is your reward for your brave service.$b$b" +WHERE `ID`= 5064; +-- |