aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.RegionServer/AgentAssetUpload.cs
diff options
context:
space:
mode:
authorMW2007-03-30 11:09:51 +0000
committerMW2007-03-30 11:09:51 +0000
commit00579d3581cc2c16657fd64c488835b9630fefb5 (patch)
treec369a62a1c4eb10e4bee9377849f442aef991de0 /OpenSim.RegionServer/AgentAssetUpload.cs
parentStarted to add a few features to the web front end that should be useful duri... (diff)
downloadopensim-SC_OLD-00579d3581cc2c16657fd64c488835b9630fefb5.zip
opensim-SC_OLD-00579d3581cc2c16657fd64c488835b9630fefb5.tar.gz
opensim-SC_OLD-00579d3581cc2c16657fd64c488835b9630fefb5.tar.bz2
opensim-SC_OLD-00579d3581cc2c16657fd64c488835b9630fefb5.tar.xz
Should now be able to create and edit Notecards
Diffstat (limited to '')
-rw-r--r--OpenSim.RegionServer/AgentAssetUpload.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim.RegionServer/AgentAssetUpload.cs b/OpenSim.RegionServer/AgentAssetUpload.cs
index bf8531a..f6b388d 100644
--- a/OpenSim.RegionServer/AgentAssetUpload.cs
+++ b/OpenSim.RegionServer/AgentAssetUpload.cs
@@ -84,14 +84,14 @@ namespace OpenSim
84 84
85 85
86 } 86 }
87 else if (pack.AssetBlock.Type == 13 | pack.AssetBlock.Type == 5) 87 else if (pack.AssetBlock.Type == 13 | pack.AssetBlock.Type == 5 | pack.AssetBlock.Type == 7)
88 { 88 {
89 89
90 asset = new AssetBase(); 90 asset = new AssetBase();
91 asset.FullID = assetID; 91 asset.FullID = assetID;
92 // Console.WriteLine("skin asset id is " + assetID.ToStringHyphenated()); 92 // Console.WriteLine("skin asset id is " + assetID.ToStringHyphenated());
93 asset.Type = pack.AssetBlock.Type; 93 asset.Type = pack.AssetBlock.Type;
94 asset.InvType = asset.Type; 94 asset.InvType = asset.Type ;
95 asset.Name = "NewClothing" + Util.RandomClass.Next(1, 1000).ToString("000"); 95 asset.Name = "NewClothing" + Util.RandomClass.Next(1, 1000).ToString("000");
96 asset.Data = pack.AssetBlock.AssetData; 96 asset.Data = pack.AssetBlock.AssetData;
97 97