mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-22 05:06:24 +00:00
fix(DB/Creature): add gossip to Maggran Earthbinder (#6748)
Just saw the info in the wiki about using a number > 50000 for gossip IDs that are not sniffed. I was using 11860, which is also the creature_templaye ID for this creature as it was free, so changing this to the first free number > 50K. Re-tested with new ID, still working.
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1625489162833644602');
|
||||
|
||||
-- Add gossip to Maggran Earthbinder
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID` = 50008;
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`) VALUES
|
||||
(50008, 5443);
|
||||
UPDATE `creature_template` SET `gossip_menu_id` = 50008 WHERE `entry` = 11860;
|
||||
Reference in New Issue
Block a user