* Temporarily disabling sending of ImageNotInDatabasePacket when a texture isn't found, since this appears to be crashing Linden client 1.19.0(5)
parent
4ed96d9929
commit
e7e157d95e
|
@ -82,7 +82,10 @@ namespace OpenSim.Region.Environment.Modules
|
||||||
|
|
||||||
ImageNotInDatabasePacket notFound = new ImageNotInDatabasePacket();
|
ImageNotInDatabasePacket notFound = new ImageNotInDatabasePacket();
|
||||||
notFound.ImageID.ID = m_textureId;
|
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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue