aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs')
-rw-r--r--OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs b/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs
index c7bd3d0..f06d70d 100644
--- a/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs
+++ b/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs
@@ -1038,6 +1038,18 @@ namespace OpenSim.Region.CoreModules.Asset
1038 return true; 1038 return true;
1039 } 1039 }
1040 1040
1041 public bool[] AssetsExist(string[] ids)
1042 {
1043 bool[] exist = new bool[ids.Length];
1044
1045 for (int i = 0; i < ids.Length; i++)
1046 {
1047 exist[i] = Check(ids[i]);
1048 }
1049
1050 return exist;
1051 }
1052
1041 public string Store(AssetBase asset) 1053 public string Store(AssetBase asset)
1042 { 1054 {
1043 if (asset.FullID == UUID.Zero) 1055 if (asset.FullID == UUID.Zero)