aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/TextureNotFoundSender.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-03-11 18:41:22 +0000
committerJustin Clarke Casey2008-03-11 18:41:22 +0000
commite7e157d95e20ca0f98d829efd26e8d6b61f2823e (patch)
treec0cbc8877c5f2359d51ac018f74ef381cac3f367 /OpenSim/Region/Environment/Modules/TextureNotFoundSender.cs
parent* Very temporarily put AgentCachedTexturePackets onto the wind rather than th... (diff)
downloadopensim-SC_OLD-e7e157d95e20ca0f98d829efd26e8d6b61f2823e.zip
opensim-SC_OLD-e7e157d95e20ca0f98d829efd26e8d6b61f2823e.tar.gz
opensim-SC_OLD-e7e157d95e20ca0f98d829efd26e8d6b61f2823e.tar.bz2
opensim-SC_OLD-e7e157d95e20ca0f98d829efd26e8d6b61f2823e.tar.xz
* Temporarily disabling sending of ImageNotInDatabasePacket when a texture isn't found, since this appears to be crashing Linden client 1.19.0(5)
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Modules/TextureNotFoundSender.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Modules/TextureNotFoundSender.cs b/OpenSim/Region/Environment/Modules/TextureNotFoundSender.cs
index 0b61d33..65374e9 100644
--- a/OpenSim/Region/Environment/Modules/TextureNotFoundSender.cs
+++ b/OpenSim/Region/Environment/Modules/TextureNotFoundSender.cs
@@ -82,7 +82,10 @@ namespace OpenSim.Region.Environment.Modules
82 82
83 ImageNotInDatabasePacket notFound = new ImageNotInDatabasePacket(); 83 ImageNotInDatabasePacket notFound = new ImageNotInDatabasePacket();
84 notFound.ImageID.ID = m_textureId; 84 notFound.ImageID.ID = m_textureId;
85 m_client.OutPacket(notFound, ThrottleOutPacketType.Unknown); 85
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.
88 // m_client.OutPacket(notFound, ThrottleOutPacketType.Unknown);
86 89
87 return true; 90 return true;
88 } 91 }