aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Manager
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-07-08 17:58:01 +0100
committerJustin Clark-Casey (justincc)2011-07-08 17:58:01 +0100
commit1dcad4ac6616a21216eeb139c901d98eed9169db (patch)
tree474a8163d29c157baa172480ac9456b235ed0624 /OpenSim/Region/Physics/Manager
parentSwitch the MeshUploadFlag CAP module on and off with the existing config Allo... (diff)
downloadopensim-SC_OLD-1dcad4ac6616a21216eeb139c901d98eed9169db.zip
opensim-SC_OLD-1dcad4ac6616a21216eeb139c901d98eed9169db.tar.gz
opensim-SC_OLD-1dcad4ac6616a21216eeb139c901d98eed9169db.tar.bz2
opensim-SC_OLD-1dcad4ac6616a21216eeb139c901d98eed9169db.tar.xz
minor: commented out log lines for future use and very small code tidy
Diffstat (limited to 'OpenSim/Region/Physics/Manager')
-rw-r--r--OpenSim/Region/Physics/Manager/PhysicsScene.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsScene.cs b/OpenSim/Region/Physics/Manager/PhysicsScene.cs
index 54c50f8..13ea084 100644
--- a/OpenSim/Region/Physics/Manager/PhysicsScene.cs
+++ b/OpenSim/Region/Physics/Manager/PhysicsScene.cs
@@ -86,7 +86,10 @@ namespace OpenSim.Region.Physics.Manager
86 Vector3 size, Quaternion rotation, bool isPhysical) 86 Vector3 size, Quaternion rotation, bool isPhysical)
87 { 87 {
88 PhysicsActor ret = AddPrimShape(primName, pbs, position, size, rotation, isPhysical); 88 PhysicsActor ret = AddPrimShape(primName, pbs, position, size, rotation, isPhysical);
89 if (ret != null) ret.LocalID = localID; 89
90 if (ret != null)
91 ret.LocalID = localID;
92
90 return ret; 93 return ret;
91 } 94 }
92 95