diff options
author | UbitUmarov | 2016-07-26 21:39:47 +0100 |
---|---|---|
committer | UbitUmarov | 2016-07-26 21:39:47 +0100 |
commit | 52decfcc16bab0332798745d59c43277f1c034b6 (patch) | |
tree | a07e3791dbf9309e010e59de725b4242d2de1079 /OpenSim/Region/OptionalModules | |
parent | add a public SetGroupPowers to clientView (diff) | |
download | opensim-SC-52decfcc16bab0332798745d59c43277f1c034b6.zip opensim-SC-52decfcc16bab0332798745d59c43277f1c034b6.tar.gz opensim-SC-52decfcc16bab0332798745d59c43277f1c034b6.tar.bz2 opensim-SC-52decfcc16bab0332798745d59c43277f1c034b6.tar.xz |
reduce some grid services calls on region crossings, sending more information on the agent update ( groups v2 needs change )
Diffstat (limited to 'OpenSim/Region/OptionalModules')
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs index ddeac66..5205eae 100644 --- a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs +++ b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/GroupsModule.cs | |||
@@ -278,7 +278,8 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups | |||
278 | // There might be some problem with the thread we're generating this on but not | 278 | // There might be some problem with the thread we're generating this on but not |
279 | // doing the update at this time causes problems (Mantis #7920 and #7915) | 279 | // doing the update at this time causes problems (Mantis #7920 and #7915) |
280 | // TODO: move sending this update to a later time in the rootification of the client. | 280 | // TODO: move sending this update to a later time in the rootification of the client. |
281 | SendAgentGroupDataUpdate(sp.ControllingClient, false); | 281 | if(!sp.haveGroupInformation) |
282 | SendAgentGroupDataUpdate(sp.ControllingClient, false); | ||
282 | } | 283 | } |
283 | 284 | ||
284 | private void OnMakeChild(ScenePresence sp) | 285 | private void OnMakeChild(ScenePresence sp) |