diff options
-rw-r--r-- | sql/updates/world/3.3.5/2018_10_17_00_world_335.sql | 11 | ||||
-rw-r--r-- | src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_vaelastrasz.cpp | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/sql/updates/world/3.3.5/2018_10_17_00_world_335.sql b/sql/updates/world/3.3.5/2018_10_17_00_world_335.sql new file mode 100644 index 00000000000..8fdea9fe764 --- /dev/null +++ b/sql/updates/world/3.3.5/2018_10_17_00_world_335.sql @@ -0,0 +1,11 @@ +-- +DELETE FROM `gossip_menu` WHERE `MenuId`=6045 AND `TextId`=7199; +INSERT INTO `gossip_menu` (`MenuId`, `TextId`, `VerifiedBuild`) VALUES +(6045, 7199, 0); + +DELETE FROM `gossip_menu` WHERE `MenuId` IN (21334,21333,21332); +DELETE FROM `gossip_menu_option` WHERE `MenuId` IN (6045,6021,6101,21334,21333,21332); +INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES +(6021, 0, 0, "I cannot Vaelastraz! Surely something can be done to heal you!", 9847, 1, 1, 6101, 0, 0, 0, "", 0, 0), +(6101, 0, 0, "Vaelastraz,, no!!", 10011, 1, 1, 0, 0, 0, 0, "", 0, 0); +UPDATE `creature_template` SET `gossip_menu_id`=6021 WHERE `entry`=13020 diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_vaelastrasz.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_vaelastrasz.cpp index 680f6927ba2..d9d3b7e9227 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_vaelastrasz.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_vaelastrasz.cpp @@ -36,7 +36,7 @@ enum Says enum Gossip { - GOSSIP_ID = 21334, + GOSSIP_ID = 6101, }; enum Spells |