aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index 9f32c33..4ea977e 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -3828,9 +3828,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
3828 } 3828 }
3829 else 3829 else
3830 { 3830 {
3831 // Everything else goes here 3831 ImprovedTerseObjectUpdatePacket.ObjectDataBlock terseUpdateBlock
3832 terseUpdateBlocks.Value.Add(CreateImprovedTerseBlock(update.Entity, updateFlags.HasFlag(PrimUpdateFlags.Textures))); 3832 = CreateImprovedTerseBlock(update.Entity, updateFlags.HasFlag(PrimUpdateFlags.Textures));
3833 3833
3834 // Everything else goes here
3834 if (update.Entity is SceneObjectPart) 3835 if (update.Entity is SceneObjectPart)
3835 { 3836 {
3836 SceneObjectPart part = (SceneObjectPart)update.Entity; 3837 SceneObjectPart part = (SceneObjectPart)update.Entity;
@@ -3843,6 +3844,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
3843 continue; 3844 continue;
3844 } 3845 }
3845 3846
3847 terseUpdateBlocks.Value.Add(terseUpdateBlock);
3846 terseUpdates.Value.Add(update); 3848 terseUpdates.Value.Add(update);
3847 } 3849 }
3848 } 3850 }