diff options
author | UbitUmarov | 2014-08-15 23:01:54 +0100 |
---|---|---|
committer | UbitUmarov | 2014-08-15 23:01:54 +0100 |
commit | 0720c201b2e5fce2b0432f675125e89fab26fd8f (patch) | |
tree | acfab9e226d44e7585e8d6085910e7cd514d33d9 /OpenSim/Region/CoreModules/Framework | |
parent | remove duplication of textures, wearables and attachments on crossings. (diff) | |
download | opensim-SC_OLD-0720c201b2e5fce2b0432f675125e89fab26fd8f.zip opensim-SC_OLD-0720c201b2e5fce2b0432f675125e89fab26fd8f.tar.gz opensim-SC_OLD-0720c201b2e5fce2b0432f675125e89fab26fd8f.tar.bz2 opensim-SC_OLD-0720c201b2e5fce2b0432f675125e89fab26fd8f.tar.xz |
on teleports dont send baked textures assets in CreateClient, they will do on the update sent next
Diffstat (limited to 'OpenSim/Region/CoreModules/Framework')
-rw-r--r-- | OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs index 7846400..7ddd1c6 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 | |||
720 | AgentCircuitData agentCircuit = sp.ControllingClient.RequestClientInfo(); | 720 | AgentCircuitData agentCircuit = sp.ControllingClient.RequestClientInfo(); |
721 | agentCircuit.startpos = position; | 721 | agentCircuit.startpos = position; |
722 | agentCircuit.child = true; | 722 | agentCircuit.child = true; |
723 | agentCircuit.Appearance = sp.Appearance; | 723 | |
724 | // agentCircuit.Appearance = sp.Appearance; | ||
725 | agentCircuit.Appearance = new AvatarAppearance(sp.Appearance, true, false); | ||
726 | |||
724 | if (currentAgentCircuit != null) | 727 | if (currentAgentCircuit != null) |
725 | { | 728 | { |
726 | agentCircuit.ServiceURLs = currentAgentCircuit.ServiceURLs; | 729 | agentCircuit.ServiceURLs = currentAgentCircuit.ServiceURLs; |