diff options
| author | offl <offl@users.noreply.github.com> | 2020-08-05 20:40:35 +0300 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-01-26 14:46:42 +0100 |
| commit | 8cea5f1a13a6e2ef6566c6a09dc66667b0a36881 (patch) | |
| tree | ce02fcefc1a9f231f2a044fa16647461aae37a9a | |
| parent | 98e2447ad43cc2b0587b6371e845c9f57e44e0a6 (diff) | |
DB/Texts: Add BroadcastTextId to Glutton's texts
(cherry picked from commit 1076d5f6f48cabcf7b028701dc51e80aaf41641d)
| -rw-r--r-- | sql/updates/world/master/2022_01_26_12_world_2020_08_05_04_world_335.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_01_26_12_world_2020_08_05_04_world_335.sql b/sql/updates/world/master/2022_01_26_12_world_2020_08_05_04_world_335.sql new file mode 100644 index 00000000000..4472a2af80a --- /dev/null +++ b/sql/updates/world/master/2022_01_26_12_world_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`; |
