mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-18 03:15:41 +00:00
fix(DB/Gossip): wrong TextId for NPC's (#11342)
* Nat Pagle was using previous `gossip menu` MenuID. So to keep Nat's gossip in order I needed new `gossip_menu` MenuID. I hope it's right approach with creating MenuID in that table from first available.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1649549626279664100');
|
||||
|
||||
-- Gryan Stoutmantle gossip
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID` = 61029;
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`) VALUES (61029, 50020);
|
||||
UPDATE `creature_template` SET `gossip_menu_id` = 61029 WHERE `entry` = 234;
|
||||
|
||||
-- Farmer_Furlbrow
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID` = 61030;
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`) VALUES (61030, 50019);
|
||||
UPDATE `creature_template` SET `gossip_menu_id` = 61030 WHERE `entry` = 237;
|
||||
Reference in New Issue
Block a user