diff options
Temporary try catch around calculateSpaceForGeom() , to see if it gets past mantis issue #435 (for now)
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index d25b8c0..7a38d0e 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -873,10 +873,17 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
873 | /// <returns>a pointer to the space. This could be a new space or reused space.</returns> | 873 | /// <returns>a pointer to the space. This could be a new space or reused space.</returns> |
874 | public IntPtr calculateSpaceForGeom(PhysicsVector pos) | 874 | public IntPtr calculateSpaceForGeom(PhysicsVector pos) |
875 | { | 875 | { |
876 | int[] xyspace = calculateSpaceArrayItemFromPos(pos); | 876 | IntPtr locationbasedspace =IntPtr.Zero; |
877 | //MainLog.Instance.Verbose("Physics", "Attempting to use arrayItem: " + xyspace[0].ToString() + "," + xyspace[1].ToString()); | 877 | try |
878 | IntPtr locationbasedspace = staticPrimspace[xyspace[0], xyspace[1]]; | 878 | { |
879 | int[] xyspace = calculateSpaceArrayItemFromPos(pos); | ||
880 | //MainLog.Instance.Verbose("Physics", "Attempting to use arrayItem: " + xyspace[0].ToString() + "," + xyspace[1].ToString()); | ||
881 | locationbasedspace = staticPrimspace[xyspace[0], xyspace[1]]; | ||
882 | } | ||
883 | catch (Exception) | ||
884 | { | ||
879 | 885 | ||
886 | } | ||
880 | //locationbasedspace = space; | 887 | //locationbasedspace = space; |
881 | return locationbasedspace; | 888 | return locationbasedspace; |
882 | } | 889 | } |