diff options
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin/OdePlugin.cs')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index 2676def..90285c2 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -242,7 +242,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
242 | // split static geometry collision handling into spaces of 30 meters | 242 | // split static geometry collision handling into spaces of 30 meters |
243 | public IntPtr[,] staticPrimspace; | 243 | public IntPtr[,] staticPrimspace; |
244 | 244 | ||
245 | public static Object OdeLock = new Object(); | 245 | public Object OdeLock; |
246 | 246 | ||
247 | public IMesher mesher; | 247 | public IMesher mesher; |
248 | 248 | ||
@@ -259,6 +259,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
259 | /// </summary> | 259 | /// </summary> |
260 | public OdeScene(CollisionLocker dode) | 260 | public OdeScene(CollisionLocker dode) |
261 | { | 261 | { |
262 | OdeLock = new Object(); | ||
262 | ode = dode; | 263 | ode = dode; |
263 | nearCallback = near; | 264 | nearCallback = near; |
264 | triCallback = TriCallback; | 265 | triCallback = TriCallback; |