From 1076d5f6f48cabcf7b028701dc51e80aaf41641d Mon Sep 17 00:00:00 2001 From: offl Date: Wed, 5 Aug 2020 20:40:35 +0300 Subject: DB/Texts: Add BroadcastTextId to Glutton's texts --- sql/updates/world/3.3.5/2020_08_05_04_world_335.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 sql/updates/world/3.3.5/2020_08_05_04_world_335.sql (limited to 'sql') diff --git a/sql/updates/world/3.3.5/2020_08_05_04_world_335.sql b/sql/updates/world/3.3.5/2020_08_05_04_world_335.sql new file mode 100644 index 00000000000..229eb0a7a0a --- /dev/null +++ b/sql/updates/world/3.3.5/2020_08_05_04_world_335.sql @@ -0,0 +1,5 @@ +-- Add BroadcastTextId to Glutton's texts, confirmed by https://www.youtube.com/watch?v=rCZU9MRtQ8s +UPDATE `creature_text` SET `BroadcastTextId` = 4515 WHERE `CreatureID` = 8567 AND `GroupID` = 2 AND `ID` = 0; +UPDATE `creature_text` SET `BroadcastTextId` = 4516 WHERE `CreatureID` = 8567 AND `GroupID` = 3 AND `ID` = 0; +-- Mismatches +UPDATE `creature_text` a LEFT JOIN `broadcast_text` b ON a.`BroadcastTextId` = b.`ID` SET a.`Text` = b.`Text` WHERE b.`Text1` = '' AND a.`Text` != b.`Text`; -- cgit v1.2.3