diff options
author | Melanie | 2012-12-14 03:57:31 +0100 |
---|---|---|
committer | Melanie | 2012-12-14 03:57:31 +0100 |
commit | 1d713bcdb8f63bc8c83a06acc90c2adf5d0d8992 (patch) | |
tree | 1e61c0c72389710bdf48875d38624ee1411a4f08 /OpenSim/Region/Physics/UbitOdePlugin/ODERayCastRequestManager.cs | |
parent | Prevent a failed user relogi from throwing exceptions in poll services (diff) | |
parent | right fix this time ?? (diff) | |
download | opensim-SC-1d713bcdb8f63bc8c83a06acc90c2adf5d0d8992.zip opensim-SC-1d713bcdb8f63bc8c83a06acc90c2adf5d0d8992.tar.gz opensim-SC-1d713bcdb8f63bc8c83a06acc90c2adf5d0d8992.tar.bz2 opensim-SC-1d713bcdb8f63bc8c83a06acc90c2adf5d0d8992.tar.xz |
Merge branch 'ubitwork' into avination
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Physics/UbitOdePlugin/ODERayCastRequestManager.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/UbitOdePlugin/ODERayCastRequestManager.cs b/OpenSim/Region/Physics/UbitOdePlugin/ODERayCastRequestManager.cs index 799a324..561ab1c 100644 --- a/OpenSim/Region/Physics/UbitOdePlugin/ODERayCastRequestManager.cs +++ b/OpenSim/Region/Physics/UbitOdePlugin/ODERayCastRequestManager.cs | |||
@@ -324,7 +324,10 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
324 | { | 324 | { |
325 | // Collide tests | 325 | // Collide tests |
326 | if ((CurrentRayFilter & FilterActiveSpace) != 0) | 326 | if ((CurrentRayFilter & FilterActiveSpace) != 0) |
327 | { | ||
327 | d.SpaceCollide2(ray, m_scene.ActiveSpace, IntPtr.Zero, nearCallback); | 328 | d.SpaceCollide2(ray, m_scene.ActiveSpace, IntPtr.Zero, nearCallback); |
329 | d.SpaceCollide2(ray, m_scene.CharsSpace, IntPtr.Zero, nearCallback); | ||
330 | } | ||
328 | if ((CurrentRayFilter & FilterStaticSpace) != 0 && (m_contactResults.Count < CurrentMaxCount)) | 331 | if ((CurrentRayFilter & FilterStaticSpace) != 0 && (m_contactResults.Count < CurrentMaxCount)) |
329 | d.SpaceCollide2(ray, m_scene.StaticSpace, IntPtr.Zero, nearCallback); | 332 | d.SpaceCollide2(ray, m_scene.StaticSpace, IntPtr.Zero, nearCallback); |
330 | if ((CurrentRayFilter & RayFilterFlags.land) != 0 && (m_contactResults.Count < CurrentMaxCount)) | 333 | if ((CurrentRayFilter & RayFilterFlags.land) != 0 && (m_contactResults.Count < CurrentMaxCount)) |
@@ -552,7 +555,6 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
552 | break; | 555 | break; |
553 | 556 | ||
554 | default: | 557 | default: |
555 | return; | ||
556 | break; | 558 | break; |
557 | } | 559 | } |
558 | } | 560 | } |