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