mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 11:57:03 +08:00
More EntityTransferContext plumbing
This commit is contained in:
@@ -184,7 +184,7 @@ namespace OpenSim.Framework
|
||||
/// Pack AgentCircuitData into an OSDMap for transmission over LLSD XML or LLSD json
|
||||
/// </summary>
|
||||
/// <returns>map of the agent circuit data</returns>
|
||||
public OSDMap PackAgentCircuitData(int wearablesCount)
|
||||
public OSDMap PackAgentCircuitData(EntityTransferContext ctx)
|
||||
{
|
||||
OSDMap args = new OSDMap();
|
||||
args["agent_id"] = OSD.FromUUID(AgentID);
|
||||
@@ -224,7 +224,7 @@ namespace OpenSim.Framework
|
||||
{
|
||||
args["appearance_serial"] = OSD.FromInteger(Appearance.Serial);
|
||||
|
||||
OSDMap appmap = Appearance.Pack(wearablesCount);
|
||||
OSDMap appmap = Appearance.Pack(ctx);
|
||||
args["packed_appearance"] = appmap;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user