From 254e047dad40fc37e959ff3923c5a71a09838561 Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Sat, 26 Jan 2008 17:38:30 +0000 Subject: * Shifted strategy of detecting specific *nix distributions to detecting *nix. * Let me know if all your avatar are standup. --- OpenSim/Region/Physics/OdePlugin/ODECharacter.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region') diff --git a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs index 9d5731e..097e2aa 100644 --- a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs +++ b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs @@ -108,8 +108,8 @@ namespace OpenSim.Region.Physics.OdePlugin _position = pos; _acceleration = new PhysicsVector(); _parent_scene = parent_scene; - string etcreturn = Util.ReadEtcIssue(); - if (etcreturn.Contains("Debian") || etcreturn.Contains("Ubuntu")) + + if (System.Environment.OSVersion.Platform == PlatformID.Unix) { m_foundDebian = true; m_tensor = 14000000f; -- cgit v1.1