From 53ee0e43a263026c6159d6ae278a0786a8acf98a Mon Sep 17 00:00:00 2001 From: Hyacinthrose <82102341+Hyacinthrose@users.noreply.github.com> Date: Wed, 4 Feb 2026 03:52:05 +1030 Subject: [PATCH] DB/ElwynnForest: Added missing credit reward for Quest: "The Fargodeep Mine" (#31644) --- sql/updates/world/master/2026_02_03_01_world.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 sql/updates/world/master/2026_02_03_01_world.sql diff --git a/sql/updates/world/master/2026_02_03_01_world.sql b/sql/updates/world/master/2026_02_03_01_world.sql new file mode 100644 index 0000000000..6ec6ecbc42 --- /dev/null +++ b/sql/updates/world/master/2026_02_03_01_world.sql @@ -0,0 +1,9 @@ +-- Quest 62 The Fargodeep Mine should not be shown if player is holding quest 54 Report to Goldshire (which is autocompleted) +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` =19 AND `SourceEntry` = 62 AND `ConditionTypeOrReference` = 28; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `ConditionStringValue1`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(19, 0, 62, 0, 0, 28, 0, 54, 0, 0, '', 1, 0, 0, '', 'The Fargodeep Mine quest not visible if Report to Goldshire is Complete'); + +-- Add missing areatrigger_involvedrelation for quest credit in upper Fargodeep Mine +DELETE FROM `areatrigger_involvedrelation` WHERE `id` = 197 AND `quest` = 62; +INSERT INTO `areatrigger_involvedrelation` (`id`, `quest`) VALUES +(197, 62);