diff options
author | UbitUmarov | 2017-05-05 01:53:02 +0100 |
---|---|---|
committer | UbitUmarov | 2017-05-05 01:53:02 +0100 |
commit | f31fe66ce16972d902bdde58785ab648d614077d (patch) | |
tree | d75d90a3186eb759339acda2173090f828edd97b | |
parent | let all clients get a group title update on create group (diff) | |
download | opensim-SC-f31fe66ce16972d902bdde58785ab648d614077d.zip opensim-SC-f31fe66ce16972d902bdde58785ab648d614077d.tar.gz opensim-SC-f31fe66ce16972d902bdde58785ab648d614077d.tar.bz2 opensim-SC-f31fe66ce16972d902bdde58785ab648d614077d.tar.xz |
fix bad move on xmlgroups
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs index a39b32e..65d50bb 100644 --- a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs +++ b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs | |||
@@ -1520,12 +1520,13 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups | |||
1520 | lastname, activeGroupPowers, activeGroupName, | 1520 | lastname, activeGroupPowers, activeGroupName, |
1521 | activeGroupTitle); | 1521 | activeGroupTitle); |
1522 | 1522 | ||
1523 | ScenePresence sp = (ScenePresence)remoteClient.SceneAgent; | ||
1524 | if (sp != null) | ||
1525 | sp.Grouptitle = activeGroupTitle; | ||
1526 | 1523 | ||
1527 | if (tellOthers) | 1524 | if (tellOthers) |
1528 | SendScenePresenceUpdate(agentID, activeGroupTitle); | 1525 | SendScenePresenceUpdate(agentID, activeGroupTitle); |
1526 | |||
1527 | ScenePresence sp = (ScenePresence)remoteClient.SceneAgent; | ||
1528 | if (sp != null) | ||
1529 | sp.Grouptitle = activeGroupTitle; | ||
1529 | } | 1530 | } |
1530 | 1531 | ||
1531 | #endregion | 1532 | #endregion |