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:
Stoabrogga
2018-10-15 20:36:55 +02:00
committed by Barbz
parent 69840392c4
commit 798bee27ee

View File

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