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:
Azcobu
2021-07-08 01:24:01 +09:30
committed by GitHub
parent 6e5bd9ea2d
commit 3b745b06b2

View File

@@ -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;