diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneGraph.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneGraph.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs index 1ac061a..2b13181 100644 --- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs +++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs | |||
@@ -452,6 +452,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
452 | part.Undo(); | 452 | part.Undo(); |
453 | } | 453 | } |
454 | } | 454 | } |
455 | protected internal void HandleRedo(IClientAPI remoteClient, UUID primId) | ||
456 | { | ||
457 | if (primId != UUID.Zero) | ||
458 | { | ||
459 | SceneObjectPart part = m_parentScene.GetSceneObjectPart(primId); | ||
460 | if (part != null) | ||
461 | part.Redo(); | ||
462 | } | ||
463 | } | ||
455 | 464 | ||
456 | protected internal void HandleObjectGroupUpdate( | 465 | protected internal void HandleObjectGroupUpdate( |
457 | IClientAPI remoteClient, UUID GroupID, uint objectLocalID, UUID Garbage) | 466 | IClientAPI remoteClient, UUID GroupID, uint objectLocalID, UUID Garbage) |