aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortkrokli <tkrokli@users.noreply.github.com>2017-07-25 10:03:29 +0200
committertkrokli <tkrokli@users.noreply.github.com>2017-07-25 10:17:01 +0200
commit2875bea3f1fc1e649af0ff8435fe2ddf040e0c4f (patch)
treeeb4ed0aae5184600a914a4ab67e8737f43e896e4
parent20fe8cad9427a9769eb8f0e7d378919869f05cf9 (diff)
DB/Quests: use correct gender format in Argent Dawn repeatable quests
- Gender selection for the words brother/sister = $gbrother:sister; - in existing quest RewardText $g is flipped and shown as straight text (instead of "brother" or "sister" the quest says "g$sister:brother")
-rw-r--r--sql/updates/world/3.3.5/2017_07_25_01_world_335.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2017_07_25_01_world_335.sql b/sql/updates/world/3.3.5/2017_07_25_01_world_335.sql
new file mode 100644
index 00000000000..060e1985040
--- /dev/null
+++ b/sql/updates/world/3.3.5/2017_07_25_01_world_335.sql
@@ -0,0 +1,9 @@
+-- Correct gender selection DB format for brother/sister is $gbrother:sister;
+UPDATE `quest_offer_reward`
+ SET `RewardText` = 'Congratulations, $N - I am pleased to award you with an Argent Dawn valor token!
+
+To acquire a valor token in such a manner indicates that you are a true hero in the cause of good. We value all effort brought to bear against the Scourge, but to take down one of their leaders is to truly deliver onto them a crushing defeat!
+
+For the Dawn, my $gbrother:sister;!'
+
+ WHERE `ID` IN (5404, 5406, 5508); -- Corruptor's Scourgestones (Argent Dawn repeatable quests)