* Temporarily disabling sending of ImageNotInDatabasePacket when a texture isn't found, since this appears to be crashing Linden client 1.19.0(5)

0.6.0-stable
Justin Clarke Casey 2008-03-11 18:41:22 +00:00
parent 4ed96d9929
commit e7e157d95e
1 changed files with 4 additions and 1 deletions

View File

@ -82,7 +82,10 @@ namespace OpenSim.Region.Environment.Modules
ImageNotInDatabasePacket notFound = new ImageNotInDatabasePacket();
notFound.ImageID.ID = m_textureId;
m_client.OutPacket(notFound, ThrottleOutPacketType.Unknown);
// XXX Temporarily disabling as this appears to be causing client crashes on at least
// 1.19.0(5) of the Linden Second Life client.
// m_client.OutPacket(notFound, ThrottleOutPacketType.Unknown);
return true;
}