diff options
| author | Shauren <shauren.trinity@gmail.com> | 2011-05-13 22:44:01 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2011-05-13 22:44:01 +0200 |
| commit | ecc95a8690b19b88a0b89bdb97239d7be86512a6 (patch) | |
| tree | b64c962ab455af850b5b9996d768c1b040be0b2b /sql | |
| parent | 5a3877f8eb2ee62070b99a894352fef1f80b0fd8 (diff) | |
Core/CreatureTextMgr: Converted chat types to use values found in sniff, without any need for conversions
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/2011_05_13_06_world_creature_text.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/2011_05_13_06_world_creature_text.sql b/sql/updates/world/2011_05_13_06_world_creature_text.sql new file mode 100644 index 00000000000..6a8eca79ade --- /dev/null +++ b/sql/updates/world/2011_05_13_06_world_creature_text.sql @@ -0,0 +1,7 @@ +-- Update creature_text to use proper text values +UPDATE `creature_text` SET `type`=12 WHERE `type`=0; +UPDATE `creature_text` SET `type`=14 WHERE `type`=1; +UPDATE `creature_text` SET `type`=16 WHERE `type`=2; +UPDATE `creature_text` SET `type`=41 WHERE `type`=3; +UPDATE `creature_text` SET `type`=15 WHERE `type`=4; +UPDATE `creature_text` SET `type`=42 WHERE `type`=5; |
