diff options
author | Justin Clarke Casey | 2008-03-12 17:02:08 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-03-12 17:02:08 +0000 |
commit | 42123770de293d17993d85c3f3074f6106d9eaba (patch) | |
tree | 8fafac20193a4219ff9896725d7b2de3486589e9 /OpenSim/Region/Environment/Modules | |
parent | Applied patch from mantis #749, Grass now stays to set type when moved. thank... (diff) | |
download | opensim-SC_OLD-42123770de293d17993d85c3f3074f6106d9eaba.zip opensim-SC_OLD-42123770de293d17993d85c3f3074f6106d9eaba.tar.gz opensim-SC_OLD-42123770de293d17993d85c3f3074f6106d9eaba.tar.bz2 opensim-SC_OLD-42123770de293d17993d85c3f3074f6106d9eaba.tar.xz |
* Add comments and slight corrections to ClientView.AgentTextureCached
* Reduce 'asset not found' console debug spam
Diffstat (limited to 'OpenSim/Region/Environment/Modules')
-rw-r--r-- | OpenSim/Region/Environment/Modules/TextureNotFoundSender.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Modules/TextureNotFoundSender.cs b/OpenSim/Region/Environment/Modules/TextureNotFoundSender.cs index 65374e9..7b835a1 100644 --- a/OpenSim/Region/Environment/Modules/TextureNotFoundSender.cs +++ b/OpenSim/Region/Environment/Modules/TextureNotFoundSender.cs | |||
@@ -85,7 +85,7 @@ namespace OpenSim.Region.Environment.Modules | |||
85 | 85 | ||
86 | // XXX Temporarily disabling as this appears to be causing client crashes on at least | 86 | // XXX Temporarily disabling as this appears to be causing client crashes on at least |
87 | // 1.19.0(5) of the Linden Second Life client. | 87 | // 1.19.0(5) of the Linden Second Life client. |
88 | // m_client.OutPacket(notFound, ThrottleOutPacketType.Unknown); | 88 | // m_client.OutPacket(notFound, ThrottleOutPacketType.Texture); |
89 | 89 | ||
90 | return true; | 90 | return true; |
91 | } | 91 | } |
diff --git a/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs b/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs index 77829f0..6467ea3 100644 --- a/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs +++ b/OpenSim/Region/Environment/Modules/UserTextureDownloadService.cs | |||
@@ -139,8 +139,8 @@ namespace OpenSim.Region.Environment.Modules | |||
139 | if (texture == null || texture.Data == null) | 139 | if (texture == null || texture.Data == null) |
140 | { | 140 | { |
141 | m_log.DebugFormat( | 141 | m_log.DebugFormat( |
142 | "[USER TEXTURE DOWNLOAD SERVICE]: Queueing TextureNotFoundSender for {0}", | 142 | "[USER TEXTURE DOWNLOAD SERVICE]: Queueing TextureNotFoundSender for {0}, client {1}", |
143 | textureID); | 143 | textureID, m_client.AgentId); |
144 | 144 | ||
145 | ITextureSender textureNotFoundSender = new TextureNotFoundSender(m_client, textureID); | 145 | ITextureSender textureNotFoundSender = new TextureNotFoundSender(m_client, textureID); |
146 | EnqueueTextureSender(textureNotFoundSender); | 146 | EnqueueTextureSender(textureNotFoundSender); |