From f5917881ca90787ce7e1ce0c951a03f2c43eea43 Mon Sep 17 00:00:00 2001 From: blinkysc <37940565+blinkysc@users.noreply.github.com> Date: Tue, 16 Jun 2026 01:51:44 -0500 Subject: [PATCH] fix(DB/Quest): Troll Patrol now grants Congratulations! (#23970) Co-authored-by: blinkysc Co-authored-by: sudlud Co-authored-by: Claude Opus 4.8 (1M context) --- .../pending_db_world/rev_1764462653575285832.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1764462653575285832.sql diff --git a/data/sql/updates/pending_db_world/rev_1764462653575285832.sql b/data/sql/updates/pending_db_world/rev_1764462653575285832.sql new file mode 100644 index 0000000000..93b91d0ad5 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1764462653575285832.sql @@ -0,0 +1,11 @@ +-- Troll Patrol dailies 12563 and 12587 were missing the spells that gate the +-- "Congratulations!" (12604) follow-up. 12604 requires both On Patrol (51573) +-- and On Patrol Heartbeat Script (53707); the time limit is enforced by 51573's +-- 20-minute duration. 12501 already grants both and works, so match it: +-- 51573 on accept (SourceSpellID), 53707 on turn-in (RewardSpell). + +-- On Patrol (51573) on accept of Troll Patrol 12563 +UPDATE `quest_template_addon` SET `SourceSpellID` = 51573 WHERE `ID` = 12563; + +-- On Patrol Heartbeat Script (53707) on turn-in of Troll Patrol 12563 and 12587 +UPDATE `quest_template` SET `RewardSpell` = 53707 WHERE `ID` IN (12563, 12587);