From 26267e0cb4fc4a4dfcc7ab93ddf60034443bd3cd Mon Sep 17 00:00:00 2001 From: ZhengPeiRu21 <98835050+ZhengPeiRu21@users.noreply.github.com> Date: Thu, 3 Feb 2022 06:43:08 -0700 Subject: [PATCH] fix(DB): Tallonkai Swiftroot has incorrect dialogue texts (#10479) * fix(DB): Tallonkai Swiftroot has incorrect dialogue texts * fix(DB): Tallonkai Swiftroot has incorrect dialogue texts (fix SQL formatting) * Update data/sql/updates/pending_db_world/rev_1643734354433050200.sql Co-authored-by: Nefertumm * Set correct npcflag for Tallonkai Swiftroot --- .../pending_db_world/rev_1643734354433050200.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1643734354433050200.sql diff --git a/data/sql/updates/pending_db_world/rev_1643734354433050200.sql b/data/sql/updates/pending_db_world/rev_1643734354433050200.sql new file mode 100644 index 000000000..0a3836f91 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1643734354433050200.sql @@ -0,0 +1,13 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1643734354433050200'); + +UPDATE `creature_template` SET `gossip_menu_id` = 61026 WHERE `entry` = 3567; +UPDATE `creature_template` SET `npcflag` = 3 WHERE `entry` = 3567; +DELETE FROM `npc_text` WHERE `ID` = 50032; +INSERT INTO `npc_text` (`ID`, `text0_0`, `text0_1`, `BroadcastTextID0`) +VALUES (50032, + 'Well met, $N. It is good to see that $cs like yourself are taking an active part in protecting the groves.', + 'Well met, $N. It is good to see that $cs like yourself are taking an active part in protecting the groves.', 0); + +DELETE FROM `gossip_menu` WHERE `MenuID` = 61026 AND `TextID` = 50032; +INSERT INTO `gossip_menu` (`MenuID`, `TextID`) VALUES +(61026, 50032);