diff options
author | tkrokli <tkrokli@users.noreply.github.com> | 2017-04-27 04:12:12 +0200 |
---|---|---|
committer | tkrokli <tkrokli@users.noreply.github.com> | 2017-04-27 04:12:12 +0200 |
commit | 4477b493301e903bc270ec0fc636ba8f314818ca (patch) | |
tree | 1419a985ce17e02e0b9d47b6fd29dbd185bed5bf | |
parent | 6892404b270f57380ffdc9ad084e0f43d94134e0 (diff) |
DB/Quests: fix Guarded Thunderbrew Barrel / Distracting Jarven
* Neither 308 nor 403 are typical "quests in a quest"
for which a negative PrevQuestID would be required.
The whole thing is controlled by conditions now,
rather than simple quest chaining - and this is blizzlike.
Closes #10626
-rw-r--r-- | sql/updates/world/3.3.5/2017_04_27_00_world_335.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2017_04_27_00_world_335.sql b/sql/updates/world/3.3.5/2017_04_27_00_world_335.sql new file mode 100644 index 00000000000..c1b9a5833d7 --- /dev/null +++ b/sql/updates/world/3.3.5/2017_04_27_00_world_335.sql @@ -0,0 +1,2 @@ +-- Fix for "Guarded Thunderbrew Barrel" and "Distracting Jarven" +UPDATE `quest_template_addon` SET `PrevQuestID`=0 WHERE `id` in (308,403); |