diff options
author | offl <offl@users.noreply.github.com> | 2020-08-02 21:24:32 +0300 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-01-26 00:22:33 +0100 |
commit | bfecd12da837d03e6ea021435271812fc819de31 (patch) | |
tree | bd95d5121d1eebf96d4716cdc5820e17f7ede603 | |
parent | 2dc8115b65ff2595bb678ffeada8eb3d499915c2 (diff) |
DB/Creature: Fix IC intro texts and TextRange
Closes #25165
(cherry picked from commit fafe10ea87fe3c0ad2d3795142c1fbe217c08ab1)
-rw-r--r-- | sql/updates/world/master/2022_01_25_22_world_2020_08_02_25_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_01_25_22_world_2020_08_02_25_world.sql b/sql/updates/world/master/2022_01_25_22_world_2020_08_02_25_world.sql new file mode 100644 index 00000000000..c9f56fd254d --- /dev/null +++ b/sql/updates/world/master/2022_01_25_22_world_2020_08_02_25_world.sql @@ -0,0 +1,5 @@ +-- Fix IC intro texts and TextRange +-- Highlord Tirion Fordring used broadcast text for his gossip menu; TextRange is wrong at least for type 12 +UPDATE `creature_text` SET `BroadcastTextId` = 37027 WHERE `CreatureID` = 37119 AND `GroupID` = 0 AND `ID` = 0; +UPDATE `creature_text` SET `TextRange` = 2 WHERE `CreatureID` = 37119; +UPDATE `creature_text` SET `TextRange` = 2 WHERE `CreatureID` = 37187 AND `GroupID` BETWEEN 15 AND 18; |