diff options
author | UbitUmarov | 2017-05-19 03:23:57 +0100 |
---|---|---|
committer | UbitUmarov | 2017-05-19 03:23:57 +0100 |
commit | 40091f9be5d05699e4c68b246d45a3e6546b815e (patch) | |
tree | 09d9cb7a80dc557bbd07ea688359b457020c541a /OpenSim/Region/Framework/Scenes | |
parent | Merge branch 'master' into httptests (diff) | |
parent | reWrite lsl json functions, forward slash is not escaped as LitJson spec; cod... (diff) | |
download | opensim-SC-40091f9be5d05699e4c68b246d45a3e6546b815e.zip opensim-SC-40091f9be5d05699e4c68b246d45a3e6546b815e.tar.gz opensim-SC-40091f9be5d05699e4c68b246d45a3e6546b815e.tar.bz2 opensim-SC-40091f9be5d05699e4c68b246d45a3e6546b815e.tar.xz |
Merge branch 'master' into httptests
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rwxr-xr-x | OpenSim/Region/Framework/Scenes/Scene.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index e709d6c..439f79d 100755 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -5446,7 +5446,7 @@ Label_GroupsDone: | |||
5446 | /// <param name="action"></param> | 5446 | /// <param name="action"></param> |
5447 | public void ForEachClient(Action<IClientAPI> action) | 5447 | public void ForEachClient(Action<IClientAPI> action) |
5448 | { | 5448 | { |
5449 | m_clientManager.ForEachSync(action); | 5449 | m_clientManager.ForEach(action); |
5450 | } | 5450 | } |
5451 | 5451 | ||
5452 | public int GetNumberOfClients() | 5452 | public int GetNumberOfClients() |