mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 02:20:27 +00:00
DB/NPC: Set correct gossip ID for zeppelin masters (#907)
set correct gossip menu ID for Squibby Overspeck (NPC 12137):
old: 1969 (belongs to Frezza)
new: 3842
set correct gossip menu ID for Nez'raz (NPC 3149):
old: 1971 (belongs to Zapetta)
new: 2441
removed gossip menu options 1969 and 1971 ("Where is the zeppelin now?"), as this functionality is not implemented and the option only existed for Frezza and Zapetta
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
INSERT INTO version_db_world (`sql_rev`) VALUES ('1528129508252853447');
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (1969,1971);
|
||||
UPDATE `creature_template` SET `gossip_menu_id` = 2441 WHERE `entry` = 3149;
|
||||
UPDATE `creature_template` SET `gossip_menu_id` = 3842 WHERE `entry` = 12137;
|
||||
Reference in New Issue
Block a user