aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/2014_09_18_03_world_creature_text.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/2014_09_18_03_world_creature_text.sql b/sql/updates/world/2014_09_18_03_world_creature_text.sql
new file mode 100644
index 00000000000..a3ccd371ecc
--- /dev/null
+++ b/sql/updates/world/2014_09_18_03_world_creature_text.sql
@@ -0,0 +1,10 @@
+ALTER TABLE `creature_text`
+ CHANGE `BroadcastTextID` `BroadcastTextId` MEDIUMINT(6) DEFAULT 0 NOT NULL AFTER `sound`,
+ ADD COLUMN `TextRange` TINYINT(3) UNSIGNED DEFAULT 0 NOT NULL AFTER `BroadcastTextId`;
+
+-- Zone
+UPDATE `creature_text` SET `TextRange`=2 WHERE `entry`=15214;
+
+-- Map
+UPDATE `creature_text` SET `TextRange`=3 WHERE `entry` IN (29, 14848, 22515, 26527, 27915, 30084);
+