diff options
author | Justin Clark-Casey (justincc) | 2011-09-15 18:58:58 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-09-15 18:58:58 +0100 |
commit | de19dc3024e5359f594d0a32c593d905163c24ea (patch) | |
tree | b88cb3aa910cea4fe1fb4dc171413cf75ff0dd06 /OpenSim/Region/ClientStack/Linden | |
parent | Only bother to create an inventory xfer file if there are any items in a prim... (diff) | |
download | opensim-SC_OLD-de19dc3024e5359f594d0a32c593d905163c24ea.zip opensim-SC_OLD-de19dc3024e5359f594d0a32c593d905163c24ea.tar.gz opensim-SC_OLD-de19dc3024e5359f594d0a32c593d905163c24ea.tar.bz2 opensim-SC_OLD-de19dc3024e5359f594d0a32c593d905163c24ea.tar.xz |
refactor: rename SOG/SOP.GetProperties() to SendPropertiesToClient() to reflect what it actually does
This also makes it consistent with some other methods that send data to the client.
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index e9ee7be..b5c6742 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -4119,8 +4119,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
4119 | while (updatesThisCall < m_maxUpdates) | 4119 | while (updatesThisCall < m_maxUpdates) |
4120 | { | 4120 | { |
4121 | lock (m_entityProps.SyncRoot) | 4121 | lock (m_entityProps.SyncRoot) |
4122 | if (!m_entityProps.TryDequeue(out iupdate, out timeinqueue)) | 4122 | if (!m_entityProps.TryDequeue(out iupdate, out timeinqueue)) |
4123 | break; | 4123 | break; |
4124 | 4124 | ||
4125 | ObjectPropertyUpdate update = (ObjectPropertyUpdate)iupdate; | 4125 | ObjectPropertyUpdate update = (ObjectPropertyUpdate)iupdate; |
4126 | if (update.SendFamilyProps) | 4126 | if (update.SendFamilyProps) |