mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
* Changing && to || as suggested by dirk and ChrisD, also looks sensible to me
* Please revert if this is wrong, Teravus
This commit is contained in:
@@ -109,7 +109,7 @@ namespace OpenSim.Region.Physics.OdePlugin
|
||||
_acceleration = new PhysicsVector();
|
||||
_parent_scene = parent_scene;
|
||||
string etcreturn = Util.ReadEtcIssue();
|
||||
if (etcreturn.Contains("Debian") && etcreturn.Contains("Ubuntu"))
|
||||
if (etcreturn.Contains("Debian") || etcreturn.Contains("Ubuntu"))
|
||||
{
|
||||
m_foundDebian = true;
|
||||
m_tensor = 14000000f;
|
||||
@@ -744,4 +744,4 @@ namespace OpenSim.Region.Physics.OdePlugin
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user