check the script INVENTORY_TEXTURE, INVENTORY_ALL
parent
58bbb9487e
commit
1066eb509c
|
@ -86,12 +86,18 @@ namespace OpenSim.Modules.TextureFetcher
|
||||||
|
|
||||||
if(assetData != null)
|
if(assetData != null)
|
||||||
{
|
{
|
||||||
String script = new ASCIIEncoding().GetString(assetData.Data);
|
String script = new ASCIIEncoding().GetString(assetData.Data).ToUpper();
|
||||||
|
|
||||||
m_log.Info("Script content: " + script);
|
if (script.Contains("INVENTORY_TEXTURE"))
|
||||||
|
return true;
|
||||||
|
|
||||||
|
if (script.Contains("INVENTORY_ALL"))
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
return true;
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue