mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-15 18:10:26 +00:00
fix(DB/Gossip): Champion Cyssa Dawnrose gossip in Undercity (#7007)
Champion Cyssa had a draenei gossip. That happened because the gossip menu id had 2 gossip lines. One the draenei and other the correct one. I deleted the correct one and added to a new gossip id. After that i updated the character to use the right one.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1626532264671526700');
|
||||
|
||||
-- We had 2 gossips with the id, and it was choosing the wrong one. So we insert into a new one id.
|
||||
DELETE FROM `gossip_menu` WHERE `menuid` = 61025 and `textid` = 10041;
|
||||
|
||||
-- The line 10041 is the one needed for this character.
|
||||
INSERT INTO `gossip_menu` (`menuid`, `textid` ) VALUES (61025 ,10041);
|
||||
|
||||
-- We update the character to use the new gossip id.
|
||||
UPDATE `creature_template` SET `gossip_menu_id` = 61025, `faction` = 1604 WHERE (`entry` = 20406);
|
||||
|
||||
Reference in New Issue
Block a user