diff options
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/ODERayCastRequestManager.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODERayCastRequestManager.cs b/OpenSim/Region/Physics/OdePlugin/ODERayCastRequestManager.cs index 18e5ec5..8ea8668 100644 --- a/OpenSim/Region/Physics/OdePlugin/ODERayCastRequestManager.cs +++ b/OpenSim/Region/Physics/OdePlugin/ODERayCastRequestManager.cs | |||
@@ -236,7 +236,10 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
236 | return; | 236 | return; |
237 | if (g2 == m_scene.LandGeom) | 237 | if (g2 == m_scene.LandGeom) |
238 | return; | 238 | return; |
239 | 239 | if (g1 == m_scene.WaterGeom) | |
240 | return; | ||
241 | if (g2 == m_scene.WaterGeom) | ||
242 | return; | ||
240 | 243 | ||
241 | 244 | ||
242 | 245 | ||
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index 63b56f4..83db396 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -179,7 +179,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
179 | private readonly IntPtr contactgroup; | 179 | private readonly IntPtr contactgroup; |
180 | internal IntPtr LandGeom; | 180 | internal IntPtr LandGeom; |
181 | 181 | ||
182 | private IntPtr WaterGeom; | 182 | internal IntPtr WaterGeom; |
183 | 183 | ||
184 | private float nmTerrainContactFriction = 255.0f; | 184 | private float nmTerrainContactFriction = 255.0f; |
185 | private float nmTerrainContactBounce = 0.1f; | 185 | private float nmTerrainContactBounce = 0.1f; |