diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs index 62e680b..053e0da 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs | |||
@@ -302,7 +302,9 @@ namespace OpenSim.Region.Environment.Scenes | |||
302 | public void ApplyNextOwnerPermissions() | 302 | public void ApplyNextOwnerPermissions() |
303 | { | 303 | { |
304 | foreach (SceneObjectPart part in m_parts.Values) | 304 | foreach (SceneObjectPart part in m_parts.Values) |
305 | part.Inventory.ApplyNextOwnerPermissions(); | 305 | { |
306 | part.ApplyNextOwnerPermissions(); | ||
307 | } | ||
306 | } | 308 | } |
307 | 309 | ||
308 | public string GetStateSnapshot() | 310 | public string GetStateSnapshot() |