diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index 350b9cf..532263a 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -2583,6 +2583,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2583 | if(ParentGroup != null) | 2583 | if(ParentGroup != null) |
2584 | ParentGroup.InvalidateEffectivePerms(); | 2584 | ParentGroup.InvalidateEffectivePerms(); |
2585 | } | 2585 | } |
2586 | |||
2586 | // same as above but called during group Effective Permission validation | 2587 | // same as above but called during group Effective Permission validation |
2587 | public void AggregatedInnerPermsForGroup() | 2588 | public void AggregatedInnerPermsForGroup() |
2588 | { | 2589 | { |
@@ -5227,9 +5228,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
5227 | } | 5228 | } |
5228 | } | 5229 | } |
5229 | 5230 | ||
5231 | if (changeFlags == 0) | ||
5232 | return; | ||
5230 | m_shape.TextureEntry = newTex.GetBytes(); | 5233 | m_shape.TextureEntry = newTex.GetBytes(); |
5231 | if (changeFlags != 0) | 5234 | TriggerScriptChangedEvent(changeFlags); |
5232 | TriggerScriptChangedEvent(changeFlags); | ||
5233 | ParentGroup.HasGroupChanged = true; | 5235 | ParentGroup.HasGroupChanged = true; |
5234 | ScheduleFullUpdate(); | 5236 | ScheduleFullUpdate(); |
5235 | } | 5237 | } |