diff options
| author | Aokromes <Aokromes@users.noreply.github.com> | 2014-02-12 11:27:34 +0100 |
|---|---|---|
| committer | Aokromes <Aokromes@users.noreply.github.com> | 2014-02-12 11:27:34 +0100 |
| commit | b9db1ab24e4f818a5eedb00f1992139920855d3d (patch) | |
| tree | 1703bfbee2dcf96ba780915c62833beacc54afc3 | |
| parent | 96c50c424c8ff1152f548199f4d9ec683f525f75 (diff) | |
DB/Quest: Fix 3 quests texts
By MrSmite, closes #11585, closes #11582
| -rw-r--r-- | sql/updates/world/2014_02_12_00_world_quest_template.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/2014_02_12_00_world_quest_template.sql b/sql/updates/world/2014_02_12_00_world_quest_template.sql new file mode 100644 index 00000000000..8021af4a2a2 --- /dev/null +++ b/sql/updates/world/2014_02_12_00_world_quest_template.sql @@ -0,0 +1,6 @@ +-- Fix quest Wine Shop Advert to use proper player gender in gossip text +UPDATE `quest_template` SET `OfferRewardText`='Ah, so you\'ve seen Renato? Well here you are, $G sir:madam;. A bottle of our special pinot noir. You\'ll not find its equal in all of Azeroth!' WHERE `id`=332; +-- Fix quest gossip for quest 33: Wolves Across The Border +-- Questgiver incorrectly thanks player for meat after asking them to get pelts +UPDATE `quest_template` SET `OfferRewardText`='\'Twas a grim task, friend, but you held up your part of the bargain.\r\n\r\nI have some things here you might want - take your pick!' WHERE `id`=33; +UPDATE `quest_template` SET `RequestItemsText`='Hey $N. How goes the hunt for diseased young wolves?' WHERE `id`=33; |
