From 2910f1b9490134ffae1ef0679a4371a79cd07165 Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Mon, 19 Nov 2007 12:28:00 +0000 Subject: Fixed - outside of bounds error. --- OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index 9d5b6e7..4ee94b3 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs @@ -101,7 +101,7 @@ namespace OpenSim.Region.Physics.OdePlugin public IntPtr space; // split static geometry collision handling into spaces of 30 meters - public IntPtr[,] staticPrimspace = new IntPtr[(int)(257/metersInSpace),(int)(257/metersInSpace)]; + public IntPtr[,] staticPrimspace = new IntPtr[(int)(275/metersInSpace),(int)(275/metersInSpace)]; public static Object OdeLock = new Object(); -- cgit v1.1