diff options
| author | Aokromes <Aokromes@users.noreply.github.com> | 2024-11-08 15:02:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-08 15:02:18 +0100 |
| commit | c7a021815d497367985ed6f41bd085adda0d6164 (patch) | |
| tree | b91a1a40c50abbb3ee43e5e58fdac28652749142 | |
| parent | 586c8a8224f57fd2b44888a185c5a131d550ce4f (diff) | |
DB/Quest: Add few missing queststarters
closes #30411 by CraftedRO
| -rw-r--r-- | sql/updates/world/3.3.5/2024_11_08_00_world.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2024_11_08_00_world.sql b/sql/updates/world/3.3.5/2024_11_08_00_world.sql new file mode 100644 index 00000000000..538927b043b --- /dev/null +++ b/sql/updates/world/3.3.5/2024_11_08_00_world.sql @@ -0,0 +1,14 @@ +-- https://www.wowhead.com/wotlk/quest=467/stonegears-search +-- 2nd Questgiver for "Stonegear's Search" (Pilot Longbeard) +DELETE FROM `creature_queststarter` WHERE `id` = 2092 AND `quest` = 467; +INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (2092, 467); + +-- https://www.wowhead.com/wotlk/quest=1698/yorus-barleybrew +-- 2nd Questgiver for "Yorus Barleybrew" (Darnath Bladesinger) +DELETE FROM `creature_queststarter` WHERE `id` = 7315 AND `quest` = 1698; +INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (7315, 1698); + +-- https://www.wowhead.com/wotlk/quest=1684/elanaria +-- 3rd Questgiver for "Elanaria" (Sentinel Elissa Starbreeze) +DELETE FROM `creature_queststarter` WHERE `id` = 3657 AND `quest` = 1684; +INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (3657, 1684); |
