Skip to content

Commit

Permalink
Partial fix for The-Alpha-Project#1400
Browse files Browse the repository at this point in the history
- Quest is now completable, missing ambush script.
  • Loading branch information
devw4r committed Sep 25, 2024
1 parent b7ef71c commit a190b9b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions etc/databases/world/updates/updates.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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 ;

0 comments on commit a190b9b

Please sign in to comment.