diff options
author | Kitto Flora | 2009-09-30 18:58:52 +0200 |
---|---|---|
committer | Kitto Flora | 2009-09-30 18:58:52 +0200 |
commit | 53fbc970cabf7ce94f771de5d4ccd1757005d16e (patch) | |
tree | 706ccacb0d53acff2935486d4fa71429ad9a6405 /OpenSim | |
parent | Commit initial version of KittoFlora's vehicle changes (diff) | |
download | opensim-SC_OLD-53fbc970cabf7ce94f771de5d4ccd1757005d16e.zip opensim-SC_OLD-53fbc970cabf7ce94f771de5d4ccd1757005d16e.tar.gz opensim-SC_OLD-53fbc970cabf7ce94f771de5d4ccd1757005d16e.tar.bz2 opensim-SC_OLD-53fbc970cabf7ce94f771de5d4ccd1757005d16e.tar.xz |
Small chaneg to adapt to trunk
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index 40e7471..b284ed4 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -3421,9 +3421,10 @@ if (m_shape != null) { | |||
3421 | RotationOffset, | 3421 | RotationOffset, |
3422 | UsePhysics); | 3422 | UsePhysics); |
3423 | 3423 | ||
3424 | if (PhysActor != null) | 3424 | PhysicsActor pa = PhysActor; |
3425 | if (pa != null) | ||
3425 | { | 3426 | { |
3426 | PhysActor.LocalID = LocalId; | 3427 | pa.LocalID = LocalId; |
3427 | DoPhysicsPropertyUpdate(UsePhysics, true); | 3428 | DoPhysicsPropertyUpdate(UsePhysics, true); |
3428 | if (m_parentGroup != null) | 3429 | if (m_parentGroup != null) |
3429 | { | 3430 | { |