From a190b9bc7efeaee6387f190b0cda74c20b2a7db1 Mon Sep 17 00:00:00 2001 From: devw4r <108442943+devw4r@users.noreply.github.com> Date: Wed, 25 Sep 2024 17:48:49 -0600 Subject: [PATCH] Partial fix for #1400 - Quest is now completable, missing ambush script. --- etc/databases/world/updates/updates.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/etc/databases/world/updates/updates.sql b/etc/databases/world/updates/updates.sql index 1d2ef1b17..0cf097952 100644 --- a/etc/databases/world/updates/updates.sql +++ b/etc/databases/world/updates/updates.sql @@ -245,5 +245,15 @@ begin not atomic insert into applied_updates values ('040920242'); end if; + + -- 25/09/2024 1 + if (select count(*) from applied_updates where id='250920241') = 0 then + -- Resupplying the Excavation (273), partial fix for https://github.com/The-Alpha-Project/alpha-core/issues/1400 + -- Missing script for ambush event but quest is now completable. + INSERT INTO `areatrigger_quest_relation` (`id`, `quest`) VALUES ('171', '233'); + + insert into applied_updates values ('250920241'); + end if; + end $ delimiter ; \ No newline at end of file