aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
diff options
context:
space:
mode:
authordahlia2009-11-30 01:09:46 -0800
committerdahlia2009-11-30 01:09:46 -0800
commit5b0bb1eff97065a5e02d8fed757bb71f9262595f (patch)
tree75901727de505d71cb799a96dfaa27fa43031c29 /OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
parentadd agent position to output of "show users" console command (diff)
parent* Patch from Misterblue to fix Environment.TickCount for statistics purposes.... (diff)
downloadopensim-SC_OLD-5b0bb1eff97065a5e02d8fed757bb71f9262595f.zip
opensim-SC_OLD-5b0bb1eff97065a5e02d8fed757bb71f9262595f.tar.gz
opensim-SC_OLD-5b0bb1eff97065a5e02d8fed757bb71f9262595f.tar.bz2
opensim-SC_OLD-5b0bb1eff97065a5e02d8fed757bb71f9262595f.tar.xz
Merge branch 'master' of ssh://dahlia@myConnection01/var/git/opensim
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin/ODEPrim.cs')
-rw-r--r--OpenSim/Region/Physics/OdePlugin/ODEPrim.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
index 17552d2..9e9c36f 100644
--- a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
+++ b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
@@ -2099,7 +2099,10 @@ Console.WriteLine(" JointCreateFixed");
2099 // Re creates body on size. 2099 // Re creates body on size.
2100 // EnableBody also does setMass() 2100 // EnableBody also does setMass()
2101 enableBody(); 2101 enableBody();
2102 d.BodyEnable(Body); 2102 if (Body != IntPtr.Zero)
2103 {
2104 d.BodyEnable(Body);
2105 }
2103 } 2106 }
2104 _parent_scene.geom_name_map[prim_geom] = oldname; 2107 _parent_scene.geom_name_map[prim_geom] = oldname;
2105 2108