diff options
author | Robert Adams | 2013-04-07 14:05:35 -0700 |
---|---|---|
committer | Robert Adams | 2013-04-08 06:27:44 -0700 |
commit | a7a1b8b7e9269b446e3396a35153b00942c1e35b (patch) | |
tree | df4c7041eb9a2819dd6e17aa2f95768a552f31e3 /OpenSim/Region/Physics/BulletSPlugin/BSActorSetForce.cs | |
parent | BulletSim: complete movement of physical object action code out of the (diff) | |
download | opensim-SC-a7a1b8b7e9269b446e3396a35153b00942c1e35b.zip opensim-SC-a7a1b8b7e9269b446e3396a35153b00942c1e35b.tar.gz opensim-SC-a7a1b8b7e9269b446e3396a35153b00942c1e35b.tar.bz2 opensim-SC-a7a1b8b7e9269b446e3396a35153b00942c1e35b.tar.xz |
BulletSim: clean up actor code so routines use the same coding pattern.
Fix a few enabling problems.
Diffstat (limited to 'OpenSim/Region/Physics/BulletSPlugin/BSActorSetForce.cs')
-rwxr-xr-x | OpenSim/Region/Physics/BulletSPlugin/BSActorSetForce.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSActorSetForce.cs b/OpenSim/Region/Physics/BulletSPlugin/BSActorSetForce.cs index d942490..3ad138d 100755 --- a/OpenSim/Region/Physics/BulletSPlugin/BSActorSetForce.cs +++ b/OpenSim/Region/Physics/BulletSPlugin/BSActorSetForce.cs | |||
@@ -71,7 +71,7 @@ public class BSActorSetForce : BSActor | |||
71 | if (m_controllingPrim.RawForce == OMV.Vector3.Zero) | 71 | if (m_controllingPrim.RawForce == OMV.Vector3.Zero) |
72 | { | 72 | { |
73 | m_physicsScene.DetailLog("{0},BSActorSetForce,refresh,notSetForce,removing={1}", m_controllingPrim.LocalID, ActorName); | 73 | m_physicsScene.DetailLog("{0},BSActorSetForce,refresh,notSetForce,removing={1}", m_controllingPrim.LocalID, ActorName); |
74 | m_controllingPrim.PhysicalActors.RemoveAndRelease(ActorName); | 74 | Enabled = false; |
75 | return; | 75 | return; |
76 | } | 76 | } |
77 | 77 | ||