diff options
author | UbitUmarov | 2017-04-05 19:42:55 +0100 |
---|---|---|
committer | UbitUmarov | 2017-04-05 19:42:55 +0100 |
commit | a41924d1f851c4aa807da71dc44d665d187473bf (patch) | |
tree | 9cb8d95abcb84f4c87d4d5d29d31160636745f24 /OpenSim/Region | |
parent | OSSL CheckThreatLevel() with no arguments only tests if OSSL is enabled. Fast... (diff) | |
download | opensim-SC_OLD-a41924d1f851c4aa807da71dc44d665d187473bf.zip opensim-SC_OLD-a41924d1f851c4aa807da71dc44d665d187473bf.tar.gz opensim-SC_OLD-a41924d1f851c4aa807da71dc44d665d187473bf.tar.bz2 opensim-SC_OLD-a41924d1f851c4aa807da71dc44d665d187473bf.tar.xz |
add missing invalidation of osGetLinkNumber cache
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index 46b7b86..8d04c9f 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -638,6 +638,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
638 | set | 638 | set |
639 | { | 639 | { |
640 | m_name = value; | 640 | m_name = value; |
641 | if(ParentGroup != null) | ||
642 | ParentGroup.InvalidatePartsLinkMaps(); | ||
641 | 643 | ||
642 | PhysicsActor pa = PhysActor; | 644 | PhysicsActor pa = PhysActor; |
643 | 645 | ||