mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 03:45:35 +08:00
Correct wrong inverted logic on settings goup
This commit is contained in:
@@ -423,7 +423,7 @@ namespace OpenSim.Region.Environment.Scenes
|
|||||||
{
|
{
|
||||||
SceneObjectGroup group = (SceneObjectGroup)obj;
|
SceneObjectGroup group = (SceneObjectGroup)obj;
|
||||||
|
|
||||||
if (group.OwnerID != remoteClient.AgentId)
|
if (group.OwnerID == remoteClient.AgentId)
|
||||||
group.SetGroup(GroupID, remoteClient);
|
group.SetGroup(GroupID, remoteClient);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user