diff options
author | Melanie Thielker | 2017-01-11 23:05:39 +0000 |
---|---|---|
committer | Melanie Thielker | 2017-01-11 23:05:39 +0000 |
commit | dafb362b60cedd954f748147a563386dc87a2c26 (patch) | |
tree | eb349484ae1c3c94c553e647dbea31e389a5031f /OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |
parent | Also add the ability to quit on SIGTERM for ROBUST (diff) | |
parent | stop using a GetPermissionClass() in GenerateClientFlags since it is not good... (diff) | |
download | opensim-SC_OLD-dafb362b60cedd954f748147a563386dc87a2c26.zip opensim-SC_OLD-dafb362b60cedd954f748147a563386dc87a2c26.tar.gz opensim-SC_OLD-dafb362b60cedd954f748147a563386dc87a2c26.tar.bz2 opensim-SC_OLD-dafb362b60cedd954f748147a563386dc87a2c26.tar.xz |
Merge branch 'master' of opensimulator.org:/var/git/opensim
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index 5928764..bf991c6 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -2233,7 +2233,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2233 | { | 2233 | { |
2234 | if (part.OwnerID != userId) | 2234 | if (part.OwnerID != userId) |
2235 | { | 2235 | { |
2236 | part.LastOwnerID = part.OwnerID; | 2236 | if(part.GroupID != part.OwnerID) |
2237 | part.LastOwnerID = part.OwnerID; | ||
2237 | part.OwnerID = userId; | 2238 | part.OwnerID = userId; |
2238 | } | 2239 | } |
2239 | }); | 2240 | }); |