From 1b1378c7accbb4f4a1eaacdd4e90e79a2ef9b83e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A1udio=20Costa?= <54484196+claudiodfc@users.noreply.github.com> Date: Thu, 24 Jun 2021 00:47:19 +0100 Subject: [PATCH] fix(DB): Arcanist Helion missing gossip menu text (#6381) --- .../pending_db_world/rev_1623886496730734500.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1623886496730734500.sql diff --git a/data/sql/updates/pending_db_world/rev_1623886496730734500.sql b/data/sql/updates/pending_db_world/rev_1623886496730734500.sql new file mode 100644 index 000000000..5910acb09 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1623886496730734500.sql @@ -0,0 +1,13 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1623886496730734500'); + +-- Added the NPC text for Arcanist Helion's gossip menu +DELETE FROM `npc_text` WHERE `ID` = 50030; +INSERT INTO `npc_text` VALUES (50030, 'Knowledge is power - TRUE power, my young friend. You\'ll be wise to acquire as much of it as you can, and pay proper heed to those who have already done so.\r\n\r\nBefore the razing of the Sunwell, we fooled ourselves into thinking we had neared the apex of our civilization. It took the Scourge to bring us to our knees... and in a way, back to reality.', 'Knowledge is power - TRUE power, my young friend. You\'ll be wise to acquire as much of it as you can, and pay proper heed to those who have already done so.\r\n\r\nBefore the razing of the Sunwell, we fooled ourselves into thinking we had neared the apex of our civilization. It took the Scourge to bring us to our knees... and in a way, back to reality.', 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); + +-- Created his gossip menu +DELETE FROM `gossip_menu` WHERE (`MenuID` = 12002); +INSERT INTO `gossip_menu` (`MenuID`, `TextID`) VALUES +(12002, 50030); + +-- Updated his gossip menu on creature template +UPDATE `creature_template` SET `gossip_menu_id` = 12002 WHERE (`entry` = 15297);