diff options
author | UbitUmarov | 2014-08-16 13:43:26 +0100 |
---|---|---|
committer | UbitUmarov | 2014-08-16 13:43:26 +0100 |
commit | 1edaf29149c767a2742b44d69308edb2e2d64428 (patch) | |
tree | a899fa00d3a75b5a011fb643eb79754ab8ad4334 /OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |
parent | *test* just send default appearance ( something along path doesnt like (diff) | |
download | opensim-SC_OLD-1edaf29149c767a2742b44d69308edb2e2d64428.zip opensim-SC_OLD-1edaf29149c767a2742b44d69308edb2e2d64428.tar.gz opensim-SC_OLD-1edaf29149c767a2742b44d69308edb2e2d64428.tar.bz2 opensim-SC_OLD-1edaf29149c767a2742b44d69308edb2e2d64428.tar.xz |
NextAnimationSequenceNumber be a udpserver variable with random start
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index e69bf23..6f41ac8 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -358,7 +358,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
358 | // protected HashSet<uint> m_attachmentsSent; | 358 | // protected HashSet<uint> m_attachmentsSent; |
359 | 359 | ||
360 | private bool m_deliverPackets = true; | 360 | private bool m_deliverPackets = true; |
361 | private int m_animationSequenceNumber = 1; | 361 | |
362 | private bool m_SendLogoutPacketWhenClosing = true; | 362 | private bool m_SendLogoutPacketWhenClosing = true; |
363 | 363 | ||
364 | /// <summary> | 364 | /// <summary> |
@@ -450,7 +450,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
450 | public string Name { get { return FirstName + " " + LastName; } } | 450 | public string Name { get { return FirstName + " " + LastName; } } |
451 | 451 | ||
452 | public uint CircuitCode { get { return m_circuitCode; } } | 452 | public uint CircuitCode { get { return m_circuitCode; } } |
453 | public int NextAnimationSequenceNumber { get { return m_animationSequenceNumber++; } } | 453 | public int NextAnimationSequenceNumber |
454 | { | ||
455 | get { return m_udpServer.NextAnimationSequenceNumber; } | ||
456 | } | ||
454 | 457 | ||
455 | /// <summary> | 458 | /// <summary> |
456 | /// As well as it's function in IClientAPI, in LLClientView we are locking on this property in order to | 459 | /// As well as it's function in IClientAPI, in LLClientView we are locking on this property in order to |