diff options
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2018_08_24_00_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/master/2018_08_24_00_world.sql b/sql/updates/world/master/2018_08_24_00_world.sql new file mode 100644 index 00000000000..9805a86fa82 --- /dev/null +++ b/sql/updates/world/master/2018_08_24_00_world.sql @@ -0,0 +1,6 @@ +ALTER TABLE `conversation_line_template` ADD `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0' AFTER `ActorIdx`; +UPDATE `conversation_line_template` SET `Flags`=(`ActorIdx`>>8); +UPDATE `conversation_line_template` SET `ActorIdx`=`ActorIdx`&0xFF; +ALTER TABLE `conversation_line_template` + CHANGE `ActorIdx` `ActorIdx` tinyint(3) unsigned NOT NULL DEFAULT '0' AFTER `UiCameraID`, + DROP `Unk`; |
