* When Scene loads, added a platform string print out for testing purposes. Anyone on Debian want to run this revision and send me back the two platform lines? It would be helpful.

ThreadPoolClientBranch
Teravus Ovares 2008-01-23 22:07:48 +00:00
parent 781187e16f
commit 6874beff52
2 changed files with 3 additions and 1 deletions

View File

@ -280,6 +280,8 @@ namespace OpenSim.Region.Environment.Scenes
m_statsReporter = new SimStatsReporter(regInfo);
m_statsReporter.OnSendStatsResult += SendSimStatsPackets;
MainLog.Instance.Verbose("PLATFORM", System.Environment.OSVersion.Platform.ToString());
MainLog.Instance.Verbose("PLATFORM", System.Environment.OSVersion.ToString());
}
#endregion

View File

@ -138,7 +138,7 @@ namespace OpenSim.Region.Physics.OdePlugin
{
if (_size.X == _size.Y && _size.Y == _size.Z && _size.X == _size.Z)
{
if (((_size.X / 2f) > 0f) && ((_size.X / 2f) < 1000))
if (((_size.X / 2f) > 0f))
{
prim_geom = d.CreateSphere(m_targetSpace, _size.X / 2);
}