aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim')
-rwxr-xr-xOpenSim/Region/Physics/BulletSPlugin/BSLinkset.cs6
-rw-r--r--OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs2
2 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSLinkset.cs b/OpenSim/Region/Physics/BulletSPlugin/BSLinkset.cs
index a1027ee..3bc2100 100755
--- a/OpenSim/Region/Physics/BulletSPlugin/BSLinkset.cs
+++ b/OpenSim/Region/Physics/BulletSPlugin/BSLinkset.cs
@@ -50,7 +50,7 @@ public class BSLinkset
50 50
51 // We keep the prim's mass in the linkset structure since it could be dependent on other prims 51 // We keep the prim's mass in the linkset structure since it could be dependent on other prims
52 private float m_mass; 52 private float m_mass;
53 public float Mass 53 public float LinksetMass
54 { 54 {
55 get 55 get
56 { 56 {
@@ -150,10 +150,10 @@ public class BSLinkset
150 150
151 private float ComputeLinksetMass() 151 private float ComputeLinksetMass()
152 { 152 {
153 float mass = m_linksetRoot.Mass; 153 float mass = m_linksetRoot.MassRaw;
154 foreach (BSPrim bp in m_children) 154 foreach (BSPrim bp in m_children)
155 { 155 {
156 mass += bp.Mass; 156 mass += bp.MassRaw;
157 } 157 }
158 return mass; 158 return mass;
159 } 159 }
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs b/OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs
index d604f9c..7590d93 100644
--- a/OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs
+++ b/OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs
@@ -289,7 +289,7 @@ public sealed class BSPrim : PhysicsActor
289 { 289 {
290 get 290 get
291 { 291 {
292 return _linkset.Mass; 292 return _linkset.LinksetMass;
293 } 293 }
294 } 294 }
295 295