diff options
author | MW | 2007-07-19 22:59:43 +0000 |
---|---|---|
committer | MW | 2007-07-19 22:59:43 +0000 |
commit | 39704bceccb5e1113b9c4eade25625939d75d1a9 (patch) | |
tree | 7950456f3330523eb0240f0b3f507890f66c2cdb | |
parent | *Moved XmlConfiguration to its own project (diff) | |
download | opensim-SC_OLD-39704bceccb5e1113b9c4eade25625939d75d1a9.zip opensim-SC_OLD-39704bceccb5e1113b9c4eade25625939d75d1a9.tar.gz opensim-SC_OLD-39704bceccb5e1113b9c4eade25625939d75d1a9.tar.bz2 opensim-SC_OLD-39704bceccb5e1113b9c4eade25625939d75d1a9.tar.xz |
opps have a setting as true when it should be false.
-rw-r--r-- | OpenSim/Region/Capabilities/Caps.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Capabilities/Caps.cs b/OpenSim/Region/Capabilities/Caps.cs index ab2b3a6..06a4bd5 100644 --- a/OpenSim/Region/Capabilities/Caps.cs +++ b/OpenSim/Region/Capabilities/Caps.cs | |||
@@ -254,7 +254,7 @@ namespace OpenSim.Region.Capabilities | |||
254 | asset.FullID = assetID; | 254 | asset.FullID = assetID; |
255 | asset.Type = 0; | 255 | asset.Type = 0; |
256 | asset.InvType = 0; | 256 | asset.InvType = 0; |
257 | asset.Name = assetName; //"UploadedTexture" + Util.RandomClass.Next(1, 1000).ToString("000"); | 257 | asset.Name = assetName; |
258 | asset.Data = data; | 258 | asset.Data = data; |
259 | this.assetCache.AddAsset(asset); | 259 | this.assetCache.AddAsset(asset); |
260 | } | 260 | } |
@@ -267,7 +267,7 @@ namespace OpenSim.Region.Capabilities | |||
267 | private LLUUID newAssetID; | 267 | private LLUUID newAssetID; |
268 | private LLUUID inventoryItemID; | 268 | private LLUUID inventoryItemID; |
269 | private BaseHttpServer httpListener; | 269 | private BaseHttpServer httpListener; |
270 | private bool SaveImages = true; | 270 | private bool SaveImages = false; |
271 | private string m_assetName = ""; | 271 | private string m_assetName = ""; |
272 | 272 | ||
273 | /// <summary> | 273 | /// <summary> |