diff options
author | maximius <none@none> | 2009-09-11 13:27:44 -0700 |
---|---|---|
committer | maximius <none@none> | 2009-09-11 13:27:44 -0700 |
commit | fd88d0dc08b38078e5893140d702077158d2026c (patch) | |
tree | 4e09b75bf2f491c1198875b8eec7e809f5af2757 | |
parent | fdbe1ebff9455464fd6e643b9e601c07b099c5c0 (diff) |
*[8462] Fix database table to allow emote id bigger than 255 Author: Athor
--HG--
branch : trunk
-rw-r--r-- | sql/world.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/world.sql b/sql/world.sql index 48f52900ef4..15c756a1b3e 100644 --- a/sql/world.sql +++ b/sql/world.sql @@ -325,7 +325,7 @@ CREATE TABLE `creature_ai_texts` ( `sound` mediumint(8) unsigned NOT NULL default '0', `type` tinyint(3) unsigned NOT NULL default '0', `language` tinyint(3) unsigned NOT NULL default '0', - `emote` tinyint(3) unsigned NOT NULL default '0', + `emote` smallint(5) unsigned NOT NULL default '0', `comment` text, PRIMARY KEY (`entry`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts'; |