fix(DB/Quest): Troll Patrol now grants Congratulations! (#23970)

Co-authored-by: blinkysc <blinkysc@users.noreply.github.com>
Co-authored-by: sudlud <sudlud@users.noreply.github.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
blinkysc
2026-06-16 01:51:44 -05:00
committed by GitHub
parent 1e0c3c824b
commit f5917881ca
@@ -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);