diff options
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2022_04_19_00_world.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_04_19_00_world.sql b/sql/updates/world/master/2022_04_19_00_world.sql new file mode 100644 index 00000000000..e4f80fd062b --- /dev/null +++ b/sql/updates/world/master/2022_04_19_00_world.sql @@ -0,0 +1,7 @@ +ALTER TABLE `conversation_actors` + ADD `NoActorObject` TINYINT(3) UNSIGNED NULL DEFAULT '0' AFTER `CreatureDisplayInfoId`, + ADD `ActivePlayerObject` TINYINT(3) UNSIGNED NULL DEFAULT '0' AFTER `NoActorObject`; + +DELETE FROM `conversation_actors` WHERE `ConversationId`=13254 AND `Idx`=1; +INSERT INTO `conversation_actors` (`ConversationId`,`ConversationActorId`,`ConversationActorGuid`,`Idx`,`CreatureId`,`CreatureDisplayInfoId`,`NoActorObject`,`ActivePlayerObject`,`VerifiedBuild`) VALUES +(13254,0,0,1,0,0,0,1,40120); |
