aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkaelima <jeppo_meyer@msn.com>2011-05-07 19:40:03 +0200
committerkaelima <jeppo_meyer@msn.com>2011-05-07 19:40:03 +0200
commit4420608934387d7e89f9dfe4c20b765afdc29bc7 (patch)
tree12ef53d3d28237570e504f676116a682928a72df
parent7905200ebaa16171748840f893da0bcea29c2138 (diff)
DB/Creature Text: Fix text type of recent commit. Type 12 (MonsterSay) comes from sniff, however the core is displaying errors if not using regular Say.
-rw-r--r--sql/updates/world/2011_05_07_05_world_sai.sql14
-rw-r--r--sql/updates/world/2011_05_07_07_world_creature_text.sql1
2 files changed, 8 insertions, 7 deletions
diff --git a/sql/updates/world/2011_05_07_05_world_sai.sql b/sql/updates/world/2011_05_07_05_world_sai.sql
index 45316ea0b8f..8584f4beb10 100644
--- a/sql/updates/world/2011_05_07_05_world_sai.sql
+++ b/sql/updates/world/2011_05_07_05_world_sai.sql
@@ -11,10 +11,10 @@ INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type
DELETE FROM `creature_text` WHERE `entry`=@ENTRY;
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
-(@ENTRY,0,0, 'The darkness... the corruption... they came too quickly for anyone to know...',12,0,15,25,0,0, 'Restless Apparition'),
-(@ENTRY,0,1, 'It is too late for us, living one. Take yourself and your friend away from here before you both are... claimed...',12,0,15,25,0,0, 'Restless Apparition'),
-(@ENTRY,0,2, 'Go away, whoever you are! Witch Hill is mine... mine!',12,0,15,25,0,0, 'Restless Apparition'),
-(@ENTRY,0,3, 'The darkness will consume all... all the living...',12,0,15,25,0,0, 'Restless Apparition'),
-(@ENTRY,0,4, 'The manor... someone else... will soon be consumed...',12,0,15,25,0,0, 'Restless Apparition'),
-(@ENTRY,0,5, 'Why have you come here, outsider? You will only find pain! Our fate will be yours...',12,0,15,25,0,0, 'Restless Apparition'),
-(@ENTRY,0,6, 'It was... terrible... the demon...',12,0,15,25,0,0, 'Restless Apparition');
+(@ENTRY,0,0, 'The darkness... the corruption... they came too quickly for anyone to know...',0,0,15,25,0,0, 'Restless Apparition'),
+(@ENTRY,0,1, 'It is too late for us, living one. Take yourself and your friend away from here before you both are... claimed...',0,0,15,25,0,0, 'Restless Apparition'),
+(@ENTRY,0,2, 'Go away, whoever you are! Witch Hill is mine... mine!',0,0,15,25,0,0, 'Restless Apparition'),
+(@ENTRY,0,3, 'The darkness will consume all... all the living...',0,0,15,25,0,0, 'Restless Apparition'),
+(@ENTRY,0,4, 'The manor... someone else... will soon be consumed...',0,0,15,25,0,0, 'Restless Apparition'),
+(@ENTRY,0,5, 'Why have you come here, outsider? You will only find pain! Our fate will be yours...',0,0,15,25,0,0, 'Restless Apparition'),
+(@ENTRY,0,6, 'It was... terrible... the demon...',0,0,15,25,0,0, 'Restless Apparition');
diff --git a/sql/updates/world/2011_05_07_07_world_creature_text.sql b/sql/updates/world/2011_05_07_07_world_creature_text.sql
new file mode 100644
index 00000000000..b8aaced3d0f
--- /dev/null
+++ b/sql/updates/world/2011_05_07_07_world_creature_text.sql
@@ -0,0 +1 @@
+UPDATE `creature_text` SET `type`=0 WHERE `type`=12 AND `entry`=23861;