From 0720c201b2e5fce2b0432f675125e89fab26fd8f Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Fri, 15 Aug 2014 23:01:54 +0100 Subject: [PATCH] on teleports dont send baked textures assets in CreateClient, they will do on the update sent next --- .../Framework/EntityTransfer/EntityTransferModule.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs index 78464005ba..7ddd1c6e70 100644 --- a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs +++ b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs @@ -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;