aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs
diff options
context:
space:
mode:
authorRobert Adams2012-07-26 15:24:53 -0700
committerRobert Adams2012-07-26 16:06:00 -0700
commitce812c88ccc9226167b049e49296892943409e3f (patch)
tree8f6be437bf0bf2079290d5e4d255ce7af81c93fc /OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs
parentBulletSim: refactor all the linkset logic out of the prim class (diff)
downloadopensim-SC_OLD-ce812c88ccc9226167b049e49296892943409e3f.zip
opensim-SC_OLD-ce812c88ccc9226167b049e49296892943409e3f.tar.gz
opensim-SC_OLD-ce812c88ccc9226167b049e49296892943409e3f.tar.bz2
opensim-SC_OLD-ce812c88ccc9226167b049e49296892943409e3f.tar.xz
BulletSim: fix a recursive loop when fetching the mass of the root of a linkset.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs2
1 files changed, 1 insertions, 1 deletions
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