diff options
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 0366d94..b448182 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -970,12 +970,12 @@ namespace OpenSim | |||
970 | m_sceneManager.ForEachScene( | 970 | m_sceneManager.ForEachScene( |
971 | delegate(Scene scene) | 971 | delegate(Scene scene) |
972 | { | 972 | { |
973 | scene.ClientManager.ForEachSync( | 973 | scene.ForEachClient( |
974 | delegate(IClientAPI client) | 974 | delegate(IClientAPI client) |
975 | { | 975 | { |
976 | connections.AppendFormat("{0}: {1} ({2}) from {3} on circuit {4}\n", | 976 | connections.AppendFormat("{0}: {1} ({2}) from {3} on circuit {4}\n", |
977 | scene.RegionInfo.RegionName, client.Name, client.AgentId, client.RemoteEndPoint, client.CircuitCode); | 977 | scene.RegionInfo.RegionName, client.Name, client.AgentId, client.RemoteEndPoint, client.CircuitCode); |
978 | } | 978 | }, false |
979 | ); | 979 | ); |
980 | } | 980 | } |
981 | ); | 981 | ); |