fix(DB/Quest): Assign proper quest starters for Brewfest souvenir quests. (#20105)

* Create 24468_13932.sql

Adds "Pol Amberstill <Ram Racing Apprentice>"[24468] as Quest Starter for "Another Year, Another Souvenir"[13932] after completing "Now This is Ram Racing... Almost"[11318].

* Create 24510_13931.sql

Adds "Driz Tumblequick <Ram Racing Apprentice>"[24510] as Quest Starter for "Another Year, Another Souvenir"[13931] after completing "Now This is Ram Racing... Almost"[11409].

* Delete data/sql/updates/pending_db_world/24468_13932.sql

* Delete data/sql/updates/pending_db_world/24510_13931.sql

* Corrected the SQL File

# Adds "Pol Amberstill <Ram Racing Apprentice>"[24468] as Quest Starter for "Another Year, Another Souvenir"[13932] after completing "Now This is Ram Racing... Almost"[11318].
# Adds "Driz Tumblequick <Ram Racing Apprentice>"[24510] as Quest Starter for "Another Year, Another Souvenir"[13931] after completing "Now This is Ram Racing... Almost"[11409].

Thanks @pangolp for the help

* fix(DB/Quest): Assign proper quest starters for Brewfest souvenir quests.

* Bench's Suggestion

https://github.com/azerothcore/azerothcore-wotlk/pull/20105#issuecomment-2383526853
This commit is contained in:
FlyingArowana
2024-10-13 11:05:12 +01:00
committed by GitHub
parent 7afaaaedee
commit 437f3046c0

View File

@@ -0,0 +1,8 @@
--
DELETE FROM `game_event_creature_quest` WHERE `quest` IN (13931, 13932);
DELETE FROM `creature_queststarter` WHERE `quest`=13932 AND `id`=24468;
DELETE FROM `creature_queststarter` WHERE `quest`=13931 AND `id`=24510;
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES
(24468, 13932),
(24510, 13931);