aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
diff options
context:
space:
mode:
authorTeravus Ovares2008-02-29 05:50:40 +0000
committerTeravus Ovares2008-02-29 05:50:40 +0000
commitfe1f15f4ec8bfecf58ebec543f3d54e3fd6886cb (patch)
tree5d2bf72ccdb08d0fe63dc1d98318d3b8c18a6547 /OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
parent* ODEPlugin (diff)
downloadopensim-SC_OLD-fe1f15f4ec8bfecf58ebec543f3d54e3fd6886cb.zip
opensim-SC_OLD-fe1f15f4ec8bfecf58ebec543f3d54e3fd6886cb.tar.gz
opensim-SC_OLD-fe1f15f4ec8bfecf58ebec543f3d54e3fd6886cb.tar.bz2
opensim-SC_OLD-fe1f15f4ec8bfecf58ebec543f3d54e3fd6886cb.tar.xz
* killed a 'new mass' debug line.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/OdePlugin/ODEPrim.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
index 62b6a7f..3c47e27 100644
--- a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
+++ b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
@@ -598,7 +598,7 @@ namespace OpenSim.Region.Physics.OdePlugin
598 if (Body != (IntPtr) 0) 598 if (Body != (IntPtr) 0)
599 { 599 {
600 float newmass = CalculateMass(); 600 float newmass = CalculateMass();
601 m_log.Info("[PHYSICS]: New Mass: " + newmass.ToString()); 601 //m_log.Info("[PHYSICS]: New Mass: " + newmass.ToString());
602 602
603 if (newmass <= 0) newmass = 0.0001f; 603 if (newmass <= 0) newmass = 0.0001f;
604 d.MassSetBoxTotal(out pMass, newmass, _size.X, _size.Y, _size.Z); 604 d.MassSetBoxTotal(out pMass, newmass, _size.X, _size.Y, _size.Z);