This may bring the missing texture back.

0.6.6-post-fixes
diva 2009-05-28 15:05:00 +00:00
parent 0787967f59
commit 275e53b126
1 changed files with 5 additions and 1 deletions

View File

@ -134,8 +134,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP
protected void AssetReceived(string id, Object sender, AssetBase asset) protected void AssetReceived(string id, Object sender, AssetBase asset)
{ {
UUID assetID = UUID.Zero;
if (asset != null) if (asset != null)
AssetDataCallback(asset.FullID, asset); assetID = asset.FullID;
AssetDataCallback(assetID, asset);
} }
private int GetPacketForBytePosition(int bytePosition) private int GetPacketForBytePosition(int bytePosition)