diff options
author | Melanie | 2012-06-14 00:10:52 +0100 |
---|---|---|
committer | Melanie | 2012-06-14 00:10:52 +0100 |
commit | d893e54f4b4d3b4a8f6bfa3c8744487527a194a0 (patch) | |
tree | 1601e04322dba9c6c4ae2412c92821f93aca5c7b /OpenSim/Region/ClientStack | |
parent | Merge branch 'master' into careminster (diff) | |
parent | minor: refactor part of LLClientView.ProcessEntityUpdates() to remove duplica... (diff) | |
download | opensim-SC-d893e54f4b4d3b4a8f6bfa3c8744487527a194a0.zip opensim-SC-d893e54f4b4d3b4a8f6bfa3c8744487527a194a0.tar.gz opensim-SC-d893e54f4b4d3b4a8f6bfa3c8744487527a194a0.tar.bz2 opensim-SC-d893e54f4b4d3b4a8f6bfa3c8744487527a194a0.tar.xz |
Merge branch 'master' into careminster
Conflicts:
OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index b40eeed..18602f7 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -3904,7 +3904,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
3904 | canUseImproved = false; | 3904 | canUseImproved = false; |
3905 | } | 3905 | } |
3906 | } | 3906 | } |
3907 | 3907 | ||
3908 | #endregion UpdateFlags to packet type conversion | 3908 | #endregion UpdateFlags to packet type conversion |
3909 | 3909 | ||
3910 | #region Block Construction | 3910 | #region Block Construction |
@@ -11862,7 +11862,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
11862 | if (DebugPacketLevel <= 100 && (packet.Type == PacketType.AvatarAnimation || packet.Type == PacketType.ViewerEffect)) | 11862 | if (DebugPacketLevel <= 100 && (packet.Type == PacketType.AvatarAnimation || packet.Type == PacketType.ViewerEffect)) |
11863 | logPacket = false; | 11863 | logPacket = false; |
11864 | 11864 | ||
11865 | if (DebugPacketLevel <= 50 && packet.Type == PacketType.ImprovedTerseObjectUpdate) | 11865 | if (DebugPacketLevel <= 50 |
11866 | & (packet.Type == PacketType.ImprovedTerseObjectUpdate || packet.Type == PacketType.ObjectUpdate)) | ||
11866 | logPacket = false; | 11867 | logPacket = false; |
11867 | 11868 | ||
11868 | if (DebugPacketLevel <= 25 && packet.Type == PacketType.ObjectPropertiesFamily) | 11869 | if (DebugPacketLevel <= 25 && packet.Type == PacketType.ObjectPropertiesFamily) |
@@ -12072,10 +12073,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
12072 | return string.Empty; | 12073 | return string.Empty; |
12073 | } | 12074 | } |
12074 | 12075 | ||
12075 | public void KillEndDone() | ||
12076 | { | ||
12077 | } | ||
12078 | |||
12079 | #region IClientCore | 12076 | #region IClientCore |
12080 | 12077 | ||
12081 | private readonly Dictionary<Type, object> m_clientInterfaces = new Dictionary<Type, object>(); | 12078 | private readonly Dictionary<Type, object> m_clientInterfaces = new Dictionary<Type, object>(); |