mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-13 03:32:28 -04:00
DB/ElwynnForest: Added missing credit reward for Quest: "The Fargodeep Mine" (#31644)
This commit is contained in:
9
sql/updates/world/master/2026_02_03_01_world.sql
Normal file
9
sql/updates/world/master/2026_02_03_01_world.sql
Normal file
@@ -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);
|
||||
Reference in New Issue
Block a user