mirror of
https://gitcode.com/GitHub_Trending/az/azerothcore-wotlk.git
synced 2026-07-10 19:03:11 +00:00
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:
@@ -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);
|
||||
Reference in New Issue
Block a user