From eb9ac87dd9d411a09f03ac363c783518c2cfb1e7 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Mon, 21 Jan 2019 14:09:36 +0000 Subject: fix a bad c&p --- OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim') diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 27524b5..8103eac 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs @@ -4355,10 +4355,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP else { // Everything else goes here - if (terseAgentUpdateBlocks == null) + if (terseUpdateBlocks == null) { - terseAgentUpdateBlocks = new List(); - terseAgentUpdates = new List(); + terseUpdateBlocks = new List(); + terseUpdates = new List(); } terseUpdateBlocks.Add(ablock); terseUpdates.Add(update); @@ -4394,7 +4394,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP timeDilation = Utils.FloatToUInt16(m_scene.TimeDilation, 0.0f, 1.0f); - if (terseAgentUpdateBlocks!= null) + if (terseAgentUpdateBlocks != null) { ImprovedTerseObjectUpdatePacket packet = (ImprovedTerseObjectUpdatePacket)PacketPool.Instance.GetPacket(PacketType.ImprovedTerseObjectUpdate); -- cgit v1.1