on teleports dont send baked textures assets in CreateClient, they will do on the update sent next

avinationmerge
UbitUmarov 2014-08-15 23:01:54 +01:00
parent 447fd0850a
commit 0720c201b2
1 changed files with 4 additions and 1 deletions

View File

@ -720,7 +720,10 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
AgentCircuitData agentCircuit = sp.ControllingClient.RequestClientInfo();
agentCircuit.startpos = position;
agentCircuit.child = true;
agentCircuit.Appearance = sp.Appearance;
// agentCircuit.Appearance = sp.Appearance;
agentCircuit.Appearance = new AvatarAppearance(sp.Appearance, true, false);
if (currentAgentCircuit != null)
{
agentCircuit.ServiceURLs = currentAgentCircuit.ServiceURLs;