diff options
author | Robert Adams | 2012-07-26 15:24:53 -0700 |
---|---|---|
committer | Robert Adams | 2012-07-26 16:06:00 -0700 |
commit | ce812c88ccc9226167b049e49296892943409e3f (patch) | |
tree | 8f6be437bf0bf2079290d5e4d255ce7af81c93fc /OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs | |
parent | BulletSim: refactor all the linkset logic out of the prim class (diff) | |
download | opensim-SC-ce812c88ccc9226167b049e49296892943409e3f.zip opensim-SC-ce812c88ccc9226167b049e49296892943409e3f.tar.gz opensim-SC-ce812c88ccc9226167b049e49296892943409e3f.tar.bz2 opensim-SC-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.cs | 2 |
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 | ||