mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Conversations: Fixed CONVERSATION_DYNAMIC_FIELD_LINES structure and defined related opcode/flag
This commit is contained in:
6
sql/updates/world/master/2018_08_24_00_world.sql
Normal file
6
sql/updates/world/master/2018_08_24_00_world.sql
Normal file
@@ -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`;
|
||||
Reference in New Issue
Block a user