diff options
author | Wyrserth <wyrserth@protonmail.com> | 2019-07-09 21:20:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-09 21:20:13 +0200 |
commit | 98c597d685fe111bf8d7950fc22f46700e836a1e (patch) | |
tree | dd365fcea56a8163012c3316bd77cd51e38784c5 | |
parent | 6eecb685ce0f3d3bf4cb7cd387b83ccf384b0c48 (diff) |
DB/Quest: fix race requirement for Yorus Barleybrew quests
10371 is Draenei-only, 1698 is for everyone else.
-rw-r--r-- | sql/updates/world/3.3.5/2019_07_09_03_world.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2019_07_09_03_world.sql b/sql/updates/world/3.3.5/2019_07_09_03_world.sql new file mode 100644 index 00000000000..07497f3d16a --- /dev/null +++ b/sql/updates/world/3.3.5/2019_07_09_03_world.sql @@ -0,0 +1,3 @@ +-- +UPDATE `quest_template` SET `AllowableRaces`=1+4+8+64 WHERE `ID`=1698; +UPDATE `quest_template` SET `AllowableRaces`=1024 WHERE `ID`=10371; |