cross avatar group info also if title is empty string
parent
a2c2456076
commit
7c3200b393
|
@ -4687,7 +4687,10 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
cAgent.agentCOF = COF;
|
cAgent.agentCOF = COF;
|
||||||
cAgent.ActiveGroupID = ControllingClient.ActiveGroupId;
|
cAgent.ActiveGroupID = ControllingClient.ActiveGroupId;
|
||||||
cAgent.ActiveGroupName = ControllingClient.ActiveGroupName;
|
cAgent.ActiveGroupName = ControllingClient.ActiveGroupName;
|
||||||
cAgent.ActiveGroupTitle = Grouptitle;
|
if(Grouptitle == null)
|
||||||
|
cAgent.ActiveGroupTitle = String.Empty;
|
||||||
|
else
|
||||||
|
cAgent.ActiveGroupTitle = Grouptitle;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue