Tweaked for a possibility of 10 elements.

afrisby
Teravus Ovares 2007-11-19 16:12:53 +00:00
parent 4eb4082e27
commit 79e9d4faf9
1 changed files with 1 additions and 1 deletions

View File

@ -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)(275/metersInSpace),(int)(275/metersInSpace)];
public IntPtr[,] staticPrimspace = new IntPtr[(int)(300/metersInSpace),(int)(300/metersInSpace)];
public static Object OdeLock = new Object();