From bf26256e2b0ac1622ea6c98925546bdd4541cbdd Mon Sep 17 00:00:00 2001 From: Knindza Date: Wed, 1 May 2019 23:40:57 +0200 Subject: [PATCH] fix(DB/Creature): Dalaran creatures speech (#1752) Dalaran NPCs no longer address themselves when speaking. --- .../updates/pending_db_world/rev_1556034383320746900.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1556034383320746900.sql diff --git a/data/sql/updates/pending_db_world/rev_1556034383320746900.sql b/data/sql/updates/pending_db_world/rev_1556034383320746900.sql new file mode 100644 index 000000000..418b553e2 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1556034383320746900.sql @@ -0,0 +1,7 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1556034383320746900'); + +DELETE FROM `creature_text` WHERE `CreatureID` IN(32718, 32714, 32720) AND `GroupID`=0 AND `ID`=0; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(32718, 0, 0, 'Be well, champion.', 12, 0, 50, 0, 0, 0, 0, 0, 'Dalaran shamy'), +(32714, 0, 0, 'Elune bless you, champion.', 12, 0, 100, 0, 0, 0, 0, 0, 'Dalaran priest'), +(32720, 0, 0, 'Good to see you, champion.', 12, 0, 50, 0, 0, 0, 0, 0, 'Dalaran mage');