diff options
| author | Dr-J <daniel.jarrott0@gmail.com> | 2015-04-29 23:16:12 +0100 |
|---|---|---|
| committer | Dr-J <daniel.jarrott0@gmail.com> | 2015-04-29 23:16:12 +0100 |
| commit | 5ef9f1415ad96c4ea32593066d335a294e7b05c7 (patch) | |
| tree | ef4c0e9667a8c8c8511e8cf2df9149dcd1a7d7ad | |
| parent | 67ce9924a2aab340d72df44d0d514dac48b306ac (diff) | |
DB/Quest: Fix bad required races
http://www.wowhead.com/quest=915/you-scream-i-scream is horde quest but required races where set to 255 which made it so Bloodelf characters could not take this quest and thus could not complete Ogrimmar childrens week chain.
255 was the below even though this is horde only quest.
1 | 1 Human
2 | 2 Orc
4 | 3 Dwarf
8 | 4 Night Elf
16 | 5 Undead
32 | 6 Tauren
64 | 7 Gnome
128 | 8 Troll
| -rw-r--r-- | sql/updates/world/2015_04_29_01_world.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/updates/world/2015_04_29_01_world.sql b/sql/updates/world/2015_04_29_01_world.sql new file mode 100644 index 00000000000..e8ec2fb4ae8 --- /dev/null +++ b/sql/updates/world/2015_04_29_01_world.sql @@ -0,0 +1 @@ +UPDATE `quest_template` SET `RequiredRaces`=690 WHERE `Id`=915; |
