fix(Scripts/MoltenCore): Move Majordomo Executus gossip to database (#25309)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Andrew
2026-03-30 07:33:23 -03:00
committed by GitHub
parent 7352910a59
commit 331393df93
2 changed files with 16 additions and 47 deletions

View File

@@ -0,0 +1,9 @@
-- Move Majordomo Executus Ragnaros summoning gossip chain to database
-- Previously handled entirely in C++ script (sGossipHello/sGossipSelect)
-- Add gossip_menu entries (MenuID -> TextID) for the gossip chain
DELETE FROM `gossip_menu` WHERE `MenuID` IN (4093, 4108, 4109);
INSERT INTO `gossip_menu` (`MenuID`, `TextID`) VALUES
(4093, 4995),
(4109, 5011),
(4108, 5012);