From 21a94413dcabb49794faf42acc69e7e75ad83657 Mon Sep 17 00:00:00 2001 From: Smirnov Sergey Date: Wed, 2 Apr 2025 17:56:07 +0300 Subject: [PATCH] fix(DB/Conditions) Requires Spirit Calling Aura to loot Lesser Nether Drake Spirit (QuestID: 10853) (#21841) Quest `Spirit Calling` now only will drop `Lesser Nether Drake Spirit` when the `Spirit Calling Totems'`s aura (`38778`) is on the player(s). To-do: `If recharges are finished quest giver should also refill your stock, currently it doesn't.` --- .../updates/pending_db_world/fix-Spirit-Calling-q10853.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/fix-Spirit-Calling-q10853.sql diff --git a/data/sql/updates/pending_db_world/fix-Spirit-Calling-q10853.sql b/data/sql/updates/pending_db_world/fix-Spirit-Calling-q10853.sql new file mode 100644 index 000000000..235b7a6cc --- /dev/null +++ b/data/sql/updates/pending_db_world/fix-Spirit-Calling-q10853.sql @@ -0,0 +1,4 @@ +DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 1 AND `SourceGroup` = 21004 AND `SourceEntry` = 31656); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorTextId`, `ScriptName`, `Comment`) +VALUES +(1, 21004, 31656, 0, 0, 1, 0, 38778, 0, 0, 0, 0, '', 'Requires Spirit Calling Aura to loot Lesser Nether Drake Spirit');