diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index b132a19..9c06786 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -1691,10 +1691,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
1691 | if (userExposed) | 1691 | if (userExposed) |
1692 | dupe.UUID = UUID.Random(); | 1692 | dupe.UUID = UUID.Random(); |
1693 | 1693 | ||
1694 | //memberwiseclone means it also clones the physics actor reference | 1694 | // The PhysActor cannot be valid on a copy because the copy is not in the scene yet. |
1695 | // This will make physical prim 'bounce' if not set to null. | 1695 | // Null it, the caller has to create a new one once the object is added to a scene |
1696 | if (!userExposed) | 1696 | dupe.PhysActor = null; |
1697 | dupe.PhysActor = null; | ||
1698 | 1697 | ||
1699 | dupe.OwnerID = AgentID; | 1698 | dupe.OwnerID = AgentID; |
1700 | dupe.GroupID = GroupID; | 1699 | dupe.GroupID = GroupID; |